Public Member Functions | |
init ($all_users, $user_name, $owner, $read, $delete, $notify_owner, $notify_user, $secure, $all_on_channel, $also_unknown, $notify_owner_message, $notify_user_message) | |
Initialization. | |
Public Attributes | |
$all_on_channel | |
Name of channel for all users, or empty. | |
$all_users | |
Boolean: is for all users? | |
$also_unknown | |
Boolean: also for unknown users? | |
$delete | |
Boolean: DELETE: can delete? | |
$notify_owner | |
Boolean: NOTIFY_OWNER: should be owner notified when someone reads the object? | |
$notify_owner_message | |
String: Message for owner used as notification. | |
$notify_user | |
Boolean: NOTIFY_USER: should be user notified to read the object? | |
$notify_user_message | |
String: Message for user used as notification. | |
$owner | |
Boolean: OWNER: is user owner? | |
$read | |
Boolean: READ: can read? | |
$secure | |
Boolean: is SECUREd object? | |
$user_name | |
Name of user. |
Definition at line 344 of file library_php_2.inc.php.
|
Initialization.
Definition at line 376 of file library_php_2.inc.php. References $all_on_channel, $all_users, $also_unknown, $delete, $notify_owner, $notify_owner_message, $notify_user, $notify_user_message, $owner, $read, $secure, and $user_name. 00379 { 00380 $this->all_users=$all_users; 00381 $this->user_name=$user_name; 00382 $this->owner=$owner; 00383 $this->read=$read; 00384 $this->delete=$delete; 00385 $this->notify_owner=$notify_owner; 00386 $this->notify_user=$notify_user; 00387 $this->secure=$secure; 00388 $this->all_on_channel=$all_on_channel; 00389 $this->also_unknown=$also_unknown; 00390 $this->notify_owner_message=$notify_owner_message; 00391 $this->notify_user_message=$notify_user_message; 00392 }
|
|
Name of channel for all users, or empty.
Definition at line 353 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: is for all users?
Definition at line 345 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: also for unknown users?
Definition at line 354 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: DELETE: can delete?
Definition at line 349 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: NOTIFY_OWNER: should be owner notified when someone reads the object?
Definition at line 350 of file library_php_2.inc.php. Referenced by init(). |
|
String: Message for owner used as notification.
Definition at line 355 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: NOTIFY_USER: should be user notified to read the object?
Definition at line 351 of file library_php_2.inc.php. Referenced by init(). |
|
String: Message for user used as notification.
Definition at line 356 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: OWNER: is user owner?
Definition at line 347 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: READ: can read?
Definition at line 348 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: is SECUREd object?
Definition at line 352 of file library_php_2.inc.php. Referenced by init(). |
|
Name of user.
Definition at line 346 of file library_php_2.inc.php. Referenced by init(). |