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 64 of file library_php_2.inc.php.
|
Gets channel from SCRIPT command.
Definition at line 99 of file library_php_2.inc.php.
|
|
Gets parameter.
Definition at line 112 of file library_php_2.inc.php. 00113 { 00114 if($index>=count($this->params)) 00115 return NULL; 00116 return $this->params[$index]; 00117 }
|
|
Initialization: clean-up.
Definition at line 75 of file library_php_2.inc.php. References $channel. 00075 { 00076 $this->channel=$channel; 00077 $this->params=array(); 00078 }
|
|
Adds a new parameter to the array.
Definition at line 88 of file library_php_2.inc.php.
|
|
Name of channel (if applicable).
Definition at line 65 of file library_php_2.inc.php. Referenced by init(). |
|
Array of input parameters.
Definition at line 66 of file library_php_2.inc.php. |