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 365 of file library_php_2.inc.php.
|
Initialization.
Definition at line 397 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. 00400 { 00401 $this->all_users=$all_users; 00402 $this->user_name=$user_name; 00403 $this->owner=$owner; 00404 $this->read=$read; 00405 $this->delete=$delete; 00406 $this->notify_owner=$notify_owner; 00407 $this->notify_user=$notify_user; 00408 $this->secure=$secure; 00409 $this->all_on_channel=$all_on_channel; 00410 $this->also_unknown=$also_unknown; 00411 $this->notify_owner_message=$notify_owner_message; 00412 $this->notify_user_message=$notify_user_message; 00413 }
|
|
Name of channel for all users, or empty.
Definition at line 374 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: is for all users?
Definition at line 366 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: also for unknown users?
Definition at line 375 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: DELETE: can delete?
Definition at line 370 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 371 of file library_php_2.inc.php. Referenced by init(). |
|
String: Message for owner used as notification.
Definition at line 376 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: NOTIFY_USER: should be user notified to read the object?
Definition at line 372 of file library_php_2.inc.php. Referenced by init(). |
|
String: Message for user used as notification.
Definition at line 377 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: OWNER: is user owner?
Definition at line 368 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: READ: can read?
Definition at line 369 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: is SECUREd object?
Definition at line 373 of file library_php_2.inc.php. Referenced by init(). |
|
Name of user.
Definition at line 367 of file library_php_2.inc.php. Referenced by init(). |