Public Member Functions | |
add_access ($access) | |
Adds access right. | |
add_event ($event) | |
Adds event. | |
init ($type, $internal_name, $public_name, $time, $published, $complete, $expiration) | |
Initialization. | |
Public Attributes | |
$access | |
Array of c_filesys_access. | |
$complete | |
Boolean: is file completely received? | |
$events | |
Array of c_filesys_event. | |
$expiration | |
Time of expiration of object. | |
$internal_name | |
Internal name of object (physical name of file). | |
$public_name | |
Public name of object. | |
$published | |
Boolean: is it published? | |
$time | |
Time of creation. | |
$type | |
Type of object ("ft_message", or "ft_file"). |
Definition at line 458 of file library_php_2.inc.php.
|
Adds access right.
Definition at line 504 of file library_php_2.inc.php.
|
|
Adds event.
Definition at line 515 of file library_php_2.inc.php.
|
|
Initialization.
Definition at line 483 of file library_php_2.inc.php. References $complete, $expiration, $internal_name, $public_name, $published, $time, and $type. 00485 { 00486 $this->type=$type; 00487 $this->internal_name=$internal_name; 00488 $this->public_name=$public_name; 00489 $this->time=$time; 00490 $this->published=$published; 00491 $this->complete=$complete; 00492 $this->expiration=$expiration; 00493 $this->access=array(); 00494 $this->events=array(); 00495 }
|
|
Array of c_filesys_access.
Definition at line 467 of file library_php_2.inc.php. |
|
Boolean: is file completely received?
Definition at line 464 of file library_php_2.inc.php. Referenced by init(). |
|
Array of c_filesys_event.
Definition at line 468 of file library_php_2.inc.php. |
|
Time of expiration of object.
Definition at line 465 of file library_php_2.inc.php. Referenced by init(). |
|
Internal name of object (physical name of file).
Definition at line 460 of file library_php_2.inc.php. Referenced by init(). |
|
Public name of object.
Definition at line 461 of file library_php_2.inc.php. Referenced by init(). |
|
Boolean: is it published?
Definition at line 463 of file library_php_2.inc.php. Referenced by init(). |
|
Time of creation.
Definition at line 462 of file library_php_2.inc.php. Referenced by init(). |
|
Type of object ("ft_message", or "ft_file").
Definition at line 459 of file library_php_2.inc.php. Referenced by init(). |