mirror of
https://github.com/moodle/moodle.git
synced 2025-03-10 18:59:55 +01:00
10 lines
220 B
PHP
10 lines
220 B
PHP
<?php
|
|
|
|
function xmldb_feedback_install() {
|
|
global $DB;
|
|
|
|
/// Disable this module by default (because it's not technically part of Moodle 2.0)
|
|
$DB->set_field('modules', 'visible', 0, array('name'=>'feedback'));
|
|
|
|
}
|