Public Member Functions | |
| __construct ($a_file_id=0) | |
| Constructor. | |
Private Member Functions | |
| read () | |
| Read info about all existing files. | |
Private Attributes | |
| $file_id | |
| $files_size | |
| $create_date | |
| $mime_type | |
Definition at line 31 of file class.ilMemberExportFiles.php.
| ilMemberExportFile::__construct | ( | $ | a_file_id = 0 |
) |
Constructor.
public
| int | obj_id of course |
Definition at line 45 of file class.ilMemberExportFiles.php.
References read().
{
$this->file_id = $a_file_id;
$this->read();
}
Here is the call graph for this function:| ilMemberExportFile::read | ( | ) | [private] |
Read info about all existing files.
private
Definition at line 59 of file class.ilMemberExportFiles.php.
References $res.
Referenced by __construct().
{
$query = "SELECT * FROM member_export_files ".
"WHERE obj_id = ".$this->db->quote($this->obj_id)." ";
$res = $this->db->query($query);
}
Here is the caller graph for this function:ilMemberExportFile::$create_date [private] |
Definition at line 35 of file class.ilMemberExportFiles.php.
ilMemberExportFile::$file_id [private] |
Definition at line 33 of file class.ilMemberExportFiles.php.
ilMemberExportFile::$files_size [private] |
Definition at line 34 of file class.ilMemberExportFiles.php.
ilMemberExportFile::$mime_type [private] |
Definition at line 36 of file class.ilMemberExportFiles.php.
1.7.1