moodle/mod/feedback/db/install.php

10 lines
220 B
PHP
Raw Normal View History

<?php
function xmldb_feedback_install() {
global $DB;
/// Disable this module by default (because it's not technically part of Moodle 2.0)
2010-05-04 16:10:08 +00:00
$DB->set_field('modules', 'visible', 0, array('name'=>'feedback'));
}