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 105 of file library_php_2.inc.php.
|
Initialization.
Definition at line 141 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. 00144 { 00145 $this->nick=$nick; 00146 $this->ident=$ident; 00147 $this->host=$host; 00148 $this->full_name=$full_name; 00149 $this->name=$name; 00150 $this->online=$online; 00151 $this->host_unknown=$host_unknown; 00152 $this->host_bot=$host_bot; 00153 $this->irc_op=$irc_op; 00154 $this->mode=$mode; 00155 $this->host_masks=$host_masks; 00156 $this->fullname_mask=$fullname_masks; 00157 $this->meta=$meta; 00158 $this->groups=$groups; 00159 }
|
|
Full name of user.
Definition at line 109 of file library_php_2.inc.php. Referenced by init(). |
|
Array of fullname masks.
Definition at line 117 of file library_php_2.inc.php. Referenced by init(). |
|
Array of strings: groups which is the user member of.
Definition at line 119 of file library_php_2.inc.php. Referenced by init(). |
|
Host of user.
Definition at line 108 of file library_php_2.inc.php. Referenced by init(). |
|
TRUE if user is flagged as "host_bot".
Definition at line 113 of file library_php_2.inc.php. Referenced by init(). |
|
Array of host masks.
Definition at line 116 of file library_php_2.inc.php. Referenced by init(). |
|
TRUE if user is flagged as "host_unknown".
Definition at line 112 of file library_php_2.inc.php. Referenced by init(). |
|
Ident of user.
Definition at line 107 of file library_php_2.inc.php. Referenced by init(). |
|
TRUE if user has an IRC operator status.
Definition at line 114 of file library_php_2.inc.php. Referenced by init(). |
|
Associative array of meta data.
Definition at line 118 of file library_php_2.inc.php. Referenced by init(). |
|
Mode of user.
Definition at line 115 of file library_php_2.inc.php. Referenced by init(). |
|
Name of user as in logic.txt.
Definition at line 110 of file library_php_2.inc.php. Referenced by init(). |
|
Nick name.
Definition at line 106 of file library_php_2.inc.php. Referenced by init(). |
|
TRUE if user is online.
Definition at line 111 of file library_php_2.inc.php. Referenced by init(). |