Difference between revisions of "PHPLights/Documentation/liblights/LsResponseWeb"

From Linuxnetworks
Jump to: navigation, search
(initial)
 
(update)
 
Line 3: Line 3:
 
  class LsResponseWeb
 
  class LsResponseWeb
 
   extends [[PHPLights/Documentation/liblights/LsResponse|LsResponse]]
 
   extends [[PHPLights/Documentation/liblights/LsResponse|LsResponse]]
   implements [[PHPLights/Documentation/Interfaces/LsSingletonIface|LsSingletonIface]]
+
   implements [[PHPLights/Documentation/Interfaces/LsResponseIface|LsResponseIface]]
 
  {
 
  {
   protected static $instance = NULL;
+
   public function __construct()
 
   
 
   
  public static function getInstance( array $param = array() )
 
 
  protected function __construct( array &$param )
 
 
   protected function sendCookies()
 
   protected function sendCookies()
 
   protected function sendHeaders()
 
   protected function sendHeaders()
Line 18: Line 15:
 
== Public functions ==
 
== Public functions ==
  
=== getInstance() ===
+
=== __construct() ===
  
  public static function getInstance( array $param = array() )
+
  public function __construct()
  
 
== Protected functions ==
 
== Protected functions ==
 
=== __construct() ===
 
 
protected function __construct( array &$param )
 
  
 
=== sendCookies() ===
 
=== sendCookies() ===

Latest revision as of 16:19, 6 October 2007

Synopsis

class LsResponseWeb
  extends LsResponse
  implements LsResponseIface
{
  public function __construct()

  protected function sendCookies()
  protected function sendHeaders()
}

Description

Public functions

__construct()

public function __construct()

Protected functions

sendCookies()

protected function sendCookies()

sendHeaders()

protected function sendHeaders()



Back to Overview