5d922e47f7
1/ email notification when course requested 2/ course request capability so that we can limit who can request new course 3/ list of my pending course requests on the request form Implemented in 1.9 by Petr Skoda, and reviewed and merged to HEAD by me.
74 lines
5.7 KiB
PHP
74 lines
5.7 KiB
PHP
<?php // $Id$
|
|
|
|
// This file defines settingpages and externalpages under the "courses" category
|
|
|
|
if ($hassiteconfig
|
|
or has_capability('moodle/site:backup', $systemcontext)
|
|
or has_capability('moodle/category:manage', $systemcontext)
|
|
or has_capability('moodle/course:create', $systemcontext)
|
|
or has_capability('moodle/site:approvecourse', $systemcontext)) { // speedup for non-admins, add all caps used on this page
|
|
|
|
$ADMIN->add('courses', new admin_externalpage('coursemgmt', get_string('coursemgmt', 'admin'), $CFG->wwwroot . '/course/index.php?categoryedit=on',
|
|
array('moodle/category:manage', 'moodle/course:create')));
|
|
|
|
$ADMIN->add('courses', new admin_enrolment_page());
|
|
|
|
// "courserequests" settingpage
|
|
$temp = new admin_settingpage('courserequest', get_string('courserequest'));
|
|
$temp->add(new admin_setting_configcheckbox('enablecourserequests', get_string('enablecourserequests', 'admin'), get_string('configenablecourserequests', 'admin'), 0));
|
|
$temp->add(new admin_settings_coursecat_select('defaultrequestcategory', get_string('defaultrequestcategory', 'admin'), get_string('configdefaultrequestcategory', 'admin'), 1));
|
|
$temp->add(new admin_setting_configtext('courserequestnotify', get_string('courserequestnotify', 'admin'), get_string('configcourserequestnotify', 'admin'), ''));
|
|
$ADMIN->add('courses', $temp);
|
|
|
|
// Pending course requests.
|
|
if (!empty($CFG->enablecourserequests)) {
|
|
$ADMIN->add('courses', new admin_externalpage('coursespending', get_string('pendingrequests'),
|
|
$CFG->wwwroot . '/course/pending.php', array('moodle/site:approvecourse')));
|
|
}
|
|
|
|
// "backups" settingpage
|
|
if (!empty($CFG->backup_version)) {
|
|
$bi = array();
|
|
$bi[] = new admin_setting_configcheckbox('backup_sche_modules', get_string('includemodules'), get_string('backupincludemoduleshelp'), 0);
|
|
$bi[] = new admin_setting_configcheckbox('backup_sche_withuserdata', get_string('includemoduleuserdata'), get_string('backupincludemoduleuserdatahelp'), 0);
|
|
$bi[] = new admin_setting_configcheckbox('backup_sche_metacourse', get_string('metacourse'), get_string('backupmetacoursehelp'), 0);
|
|
$bi[] = new admin_setting_configselect('backup_sche_users', get_string('users'), get_string('backupusershelp'),
|
|
0, array(0 => get_string('all'), 1 => get_string('course')));
|
|
$bi[] = new admin_setting_configcheckbox('backup_sche_logs', get_string('logs'), get_string('backuplogshelp'), 0);
|
|
$bi[] = new admin_setting_configcheckbox('backup_sche_userfiles', get_string('userfiles'), get_string('backupuserfileshelp'), 0);
|
|
$bi[] = new admin_setting_configcheckbox('backup_sche_coursefiles', get_string('coursefiles'), get_string('backupcoursefileshelp'), 0);
|
|
$bi[] = new admin_setting_configcheckbox('backup_sche_sitefiles', get_string('sitefiles'), get_string('backupsitefileshelp'), 0);
|
|
$bi[] = new admin_setting_configcheckbox('backup_sche_messages', get_string('messages', 'message'), get_string('backupmessageshelp','message'), 0);
|
|
$bi[] = new admin_setting_configcheckbox('backup_sche_blogs', get_string('blogs', 'blog'), get_string('backupblogshelp','blog'), 0);
|
|
$bi[] = new admin_setting_configselect('backup_sche_keep', get_string('keep'),
|
|
get_string('backupkeephelp'), 1, array(0 => get_string('all'), 1 => '1',
|
|
2 => '2',
|
|
5 => '5',
|
|
10 => '10',
|
|
20 => '20',
|
|
30 => '30',
|
|
40 => '40',
|
|
50 => '50',
|
|
100 => '100',
|
|
200 => '200',
|
|
300 => '300',
|
|
400 => '400',
|
|
500 => '500'));
|
|
$bi[] = new admin_setting_configcheckbox('backup_sche_active', get_string('active'), get_string('backupactivehelp'), 0);
|
|
$bi[] = new admin_setting_special_backupdays();
|
|
$bi[] = new admin_setting_configtime('backup_sche_hour', 'backup_sche_minute', get_string('executeat'),
|
|
get_string('backupexecuteathelp'), array('h' => 0, 'm' => 0));
|
|
$bi[] = new admin_setting_configdirectory('backup_sche_destination', get_string('saveto'), get_string('backupsavetohelp'), '');
|
|
|
|
$temp = new admin_settingpage('backups', get_string('backups','admin'), 'moodle/site:backup');
|
|
foreach ($bi as $backupitem) {
|
|
$backupitem->plugin = 'backup';
|
|
$temp->add($backupitem);
|
|
}
|
|
$ADMIN->add('courses', $temp);
|
|
}
|
|
|
|
} // end of speedup
|
|
|
|
?>
|