ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
|
Public Member Functions | |
prepare (ilDBInterface $db) | |
step_1 () | |
adds a new table column called 'direct_download' that is used to determine if the on-click action in the ilObjFileListGUI should download the file directly or redirect to the objects info-page. More... | |
step_2 () | |
adds a new table column called 'downloads' which is used to keep track of the actual amount of downloads of a file object. More... | |
step_3 () | |
sets the default visibility of the amount of downloads to visible ('1' or true). More... | |
step_4 () | |
adds two new tables to store data concerning suffix-specific icons for files More... | |
step_5 () | |
step_6 () | |
Adds a new table column called 'important_info' to store important information regarding a file such as work instructions. More... | |
step_7 () | |
This step sets all files which were created before the "centralizing online/offline status" feature to online. More... | |
![]() | |
prepare (\ilDBInterface $db) | |
Prepare the execution of the steps. More... | |
Private Member Functions | |
abortIfNotPrepared () | |
Halts the execution of these update steps if no database was provided. More... | |
Private Attributes | |
ilDBInterface | $database = null |
Definition at line 28 of file class.ilFileObjectDatabaseObjective.php.
|
private |
Halts the execution of these update steps if no database was provided.
LogicException | if the database update steps were not yet prepared. |
Definition at line 227 of file class.ilFileObjectDatabaseObjective.php.
References null.
Referenced by step_1(), step_2(), step_3(), step_4(), and step_6().
ilFileObjectDatabaseObjective::prepare | ( | ilDBInterface | $db | ) |
Definition at line 32 of file class.ilFileObjectDatabaseObjective.php.
ilFileObjectDatabaseObjective::step_1 | ( | ) |
adds a new table column called 'direct_download' that is used to determine if the on-click action in the ilObjFileListGUI should download the file directly or redirect to the objects info-page.
NOTE: this won't affect the default-behaviour which currently downloads the file directly, since '1' or true is added as the default value to the new column.
Definition at line 46 of file class.ilFileObjectDatabaseObjective.php.
References abortIfNotPrepared(), and ilObjFile\CLICK_MODE_DOWNLOAD.
ilFileObjectDatabaseObjective::step_2 | ( | ) |
adds a new table column called 'downloads' which is used to keep track of the actual amount of downloads of a file object.
NOTE: the initial value will be the collective sum of read_count from the database table read_event of the tracking service. This will not be an accurate representation of the download count, but provides at least some insight.
Definition at line 72 of file class.ilFileObjectDatabaseObjective.php.
References abortIfNotPrepared().
ilFileObjectDatabaseObjective::step_3 | ( | ) |
sets the default visibility of the amount of downloads to visible ('1' or true).
copied from
Definition at line 106 of file class.ilFileObjectDatabaseObjective.php.
References abortIfNotPrepared().
ilFileObjectDatabaseObjective::step_4 | ( | ) |
adds two new tables to store data concerning suffix-specific icons for files
Definition at line 124 of file class.ilFileObjectDatabaseObjective.php.
References abortIfNotPrepared().
ilFileObjectDatabaseObjective::step_5 | ( | ) |
Definition at line 173 of file class.ilFileObjectDatabaseObjective.php.
ilFileObjectDatabaseObjective::step_6 | ( | ) |
Adds a new table column called 'important_info' to store important information regarding a file such as work instructions.
Definition at line 186 of file class.ilFileObjectDatabaseObjective.php.
References abortIfNotPrepared(), and null.
ilFileObjectDatabaseObjective::step_7 | ( | ) |
This step sets all files which were created before the "centralizing online/offline status" feature to online.
It will update the offline value in the table object_data of each object of type file whose offline value currently is null (as this was not set for files before the feature) to 0 (online), which is the new default online status for files.
Definition at line 215 of file class.ilFileObjectDatabaseObjective.php.
|
private |
Definition at line 30 of file class.ilFileObjectDatabaseObjective.php.