Difference between revisions of "PHPLights/Documentation/liblights/LsRequest"
From Linuxnetworks
< PHPLights | Documentation | liblights
(initial) |
(update) |
||
| Line 10: | Line 10: | ||
public function getFileArray() | public function getFileArray() | ||
public function getFileList() | public function getFileList() | ||
| + | public function notifyFrom( [[PHPLights/Documentation/Interfaces/LsPublisherIface|LsPublisherIface]] ) | ||
| + | |||
| + | protected function __construct() | ||
} | } | ||
| Line 27: | Line 30: | ||
public function getFileList() | public function getFileList() | ||
| + | |||
| + | === notifyFrom() === | ||
| + | |||
| + | public function notifyFrom( [[PHPLights/Documentation/Interfaces/LsPublisherIface|LsPublisherIface]] ) | ||
| + | |||
| + | == Protected functions == | ||
| + | |||
| + | === __construct() === | ||
| + | |||
| + | protected function __construct() | ||
---- | ---- | ||
Back to [[PHPLights/Documentation/liblights|Overview]] | Back to [[PHPLights/Documentation/liblights|Overview]] | ||
Latest revision as of 13:44, 6 October 2007
Contents
Synopsis
abstract class LsRequest implements LsRequestIface, LsListenerIface { protected $params = NULL; protected $files = array(); public function get( $name, $default = NULL, $regex = NULL ) public function getFileArray() public function getFileList() public function notifyFrom( LsPublisherIface ) protected function __construct() }
Description
Public functions
get()
public function get( $name, $default = NULL, $regex = NULL )
getFileArray()
public function getFileArray()
getFileList()
public function getFileList()
notifyFrom()
public function notifyFrom( LsPublisherIface )
Protected functions
__construct()
protected function __construct()
Back to Overview