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

From Linuxnetworks
Jump to: navigation, search
(initial)
 
(update)
 
Line 3: Line 3:
 
  class ErrorController
 
  class ErrorController
 
   extends [[PHPLights/Documentation/liblights/LsController|LsController]]
 
   extends [[PHPLights/Documentation/liblights/LsController|LsController]]
  implements [[PHPLights/Documentation/Interfaces/LsSingletonIface|LsSingletonIface]]
 
 
  {
 
  {
  public static function getInstance( array $param = array() )
 
 
   public function notfound()
 
   public function notfound()
 
   public function internal()
 
   public function internal()
Line 13: Line 11:
  
 
== Public functions ==
 
== Public functions ==
 
=== getInstance() ===
 
 
public static function getInstance( array $param = array() )
 
  
 
=== notfound() ===
 
=== notfound() ===

Latest revision as of 13:17, 6 October 2007

Synopsis

class ErrorController
  extends LsController
{
  public function notfound()
  public function internal()
}

Description

Public functions

notfound()

public function notfound()

internal()

public function internal()



Back to Overview