mirror of
https://github.com/moodle/moodle.git
synced 2025-02-13 20:36:42 +01:00
18 lines
512 B
PHP
18 lines
512 B
PHP
<?php //$Id$
|
|
|
|
// This file replaces:
|
|
// * STATEMENTS section in db/install.xml
|
|
// * lib.php/modulename_install() post installation hook
|
|
// * partially defaults.php
|
|
|
|
function xmldb_scorm_install() {
|
|
global $DB;
|
|
|
|
/// Install logging support
|
|
update_log_display_entry('scorm', 'view', 'scorm', 'name');
|
|
update_log_display_entry('scorm', 'review', 'scorm', 'name');
|
|
update_log_display_entry('scorm', 'update', 'scorm', 'name');
|
|
update_log_display_entry('scorm', 'add', 'scorm', 'name');
|
|
|
|
}
|