Public Member Functions | |
get_channel () | |
Gets channel from SCRIPT command. | |
get_param ($index) | |
Gets parameter. | |
init ($channel) | |
Initialization: clean-up. | |
set_next_parameter ($value) | |
Adds a new parameter to the array. | |
Public Attributes | |
$channel | |
Name of channel (if applicable). | |
$params | |
Array of input parameters. |
Definition at line 43 of file library_php_2.inc.php.
|
Gets channel from SCRIPT command.
Definition at line 78 of file library_php_2.inc.php.
|
|
Gets parameter.
Definition at line 91 of file library_php_2.inc.php. 00092 { 00093 if($index>=count($this->params)) 00094 return NULL; 00095 return $this->params[$index]; 00096 }
|
|
Initialization: clean-up.
Definition at line 54 of file library_php_2.inc.php. References $channel. 00054 { 00055 $this->channel=$channel; 00056 $this->params=array(); 00057 }
|
|
Adds a new parameter to the array.
Definition at line 67 of file library_php_2.inc.php.
|
|
Name of channel (if applicable).
Definition at line 44 of file library_php_2.inc.php. Referenced by init(). |
|
Array of input parameters.
Definition at line 45 of file library_php_2.inc.php. |