Public Member Functions | |
init ($nick, $ident, $host, $full_name, $name, $online, $host_unknown, $host_bot, $irc_op, $mode, $host_masks, $fullname_masks, $meta, $groups) | |
Initialization. | |
Public Attributes | |
$full_name | |
Full name of user. | |
$fullname_masks | |
Array of fullname masks. | |
$groups | |
Array of strings: groups which is the user member of. | |
$host | |
Host of user. | |
$host_bot | |
TRUE if user is flagged as "host_bot". | |
$host_masks | |
Array of host masks. | |
$host_unknown | |
TRUE if user is flagged as "host_unknown". | |
$ident | |
Ident of user. | |
$irc_op | |
TRUE if user has an IRC operator status. | |
$meta | |
Associative array of meta data. | |
$mode | |
Mode of user. | |
$name | |
Name of user as in logic.txt. | |
$nick | |
Nick name. | |
$online | |
TRUE if user is online. |
Definition at line 126 of file library_php_2.inc.php.
|
Initialization.
Definition at line 162 of file library_php_2.inc.php. References $full_name, $fullname_masks, $groups, $host, $host_bot, $host_masks, $host_unknown, $ident, $irc_op, $meta, $mode, $name, $nick, and $online. 00165 { 00166 $this->nick=$nick; 00167 $this->ident=$ident; 00168 $this->host=$host; 00169 $this->full_name=$full_name; 00170 $this->name=$name; 00171 $this->online=$online; 00172 $this->host_unknown=$host_unknown; 00173 $this->host_bot=$host_bot; 00174 $this->irc_op=$irc_op; 00175 $this->mode=$mode; 00176 $this->host_masks=$host_masks; 00177 $this->fullname_mask=$fullname_masks; 00178 $this->meta=$meta; 00179 $this->groups=$groups; 00180 }
|
|
Full name of user.
Definition at line 130 of file library_php_2.inc.php. Referenced by init(). |
|
Array of fullname masks.
Definition at line 138 of file library_php_2.inc.php. Referenced by init(). |
|
Array of strings: groups which is the user member of.
Definition at line 140 of file library_php_2.inc.php. Referenced by init(). |
|
Host of user.
Definition at line 129 of file library_php_2.inc.php. Referenced by init(). |
|
TRUE if user is flagged as "host_bot".
Definition at line 134 of file library_php_2.inc.php. Referenced by init(). |
|
Array of host masks.
Definition at line 137 of file library_php_2.inc.php. Referenced by init(). |
|
TRUE if user is flagged as "host_unknown".
Definition at line 133 of file library_php_2.inc.php. Referenced by init(). |
|
Ident of user.
Definition at line 128 of file library_php_2.inc.php. Referenced by init(). |
|
TRUE if user has an IRC operator status.
Definition at line 135 of file library_php_2.inc.php. Referenced by init(). |
|
Associative array of meta data.
Definition at line 139 of file library_php_2.inc.php. Referenced by init(). |
|
Mode of user.
Definition at line 136 of file library_php_2.inc.php. Referenced by init(). |
|
Name of user as in logic.txt.
Definition at line 131 of file library_php_2.inc.php. Referenced by init(). |
|
Nick name.
Definition at line 127 of file library_php_2.inc.php. Referenced by init(). |
|
TRUE if user is online.
Definition at line 132 of file library_php_2.inc.php. Referenced by init(). |