mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
16 lines
374 B
PHP
16 lines
374 B
PHP
<?php
|
|
|
|
// This file replaces:
|
|
// * STATEMENTS section in db/install.xml
|
|
// * lib.php/modulename_install() post installation hook
|
|
// * partially defaults.php
|
|
|
|
function xmldb_label_install() {
|
|
global $DB;
|
|
|
|
/// Install logging support
|
|
update_log_display_entry('label', 'add', 'label', 'name');
|
|
update_log_display_entry('label', 'update', 'label', 'name');
|
|
|
|
}
|