123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- <?php
- // This file is part of Moodle - http://moodle.org/
- //
- // Moodle is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // Moodle is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
- /**
- * This file defines settingpages and externalpages under the "courses" category
- *
- * @package core
- * @copyright 2002 onwards Martin Dougiamas (http://dougiamas.com)
- * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
- */
- $capabilities = array(
- 'moodle/backup:backupcourse',
- 'moodle/category:manage',
- 'moodle/course:create',
- 'moodle/site:approvecourse',
- 'moodle/restore:restorecourse'
- );
- if ($hassiteconfig or has_any_capability($capabilities, $systemcontext)) {
- // Speedup for non-admins, add all caps used on this page.
- $ADMIN->add('courses',
- new admin_externalpage('coursemgmt', new lang_string('coursemgmt', 'admin'),
- $CFG->wwwroot . '/course/management.php',
- array('moodle/category:manage', 'moodle/course:create')
- )
- );
- $ADMIN->add('courses',
- new admin_externalpage('addcategory', new lang_string('addcategory', 'admin'),
- new moodle_url('/course/editcategory.php', array('parent' => 0)),
- array('moodle/category:manage')
- )
- );
- $ADMIN->add('courses',
- new admin_externalpage('restorecourse', new lang_string('restorecourse', 'admin'),
- new moodle_url('/backup/restorefile.php', array('contextid' => context_system::instance()->id)),
- array('moodle/restore:restorecourse')
- )
- );
- // Course Default Settings Page.
- // NOTE: these settings must be applied after all other settings because they depend on them.
- // Main course settings.
- $temp = new admin_settingpage('coursesettings', new lang_string('coursesettings'));
- require_once($CFG->dirroot.'/course/lib.php');
- $choices = array();
- $choices['0'] = new lang_string('hide');
- $choices['1'] = new lang_string('show');
- $temp->add(new admin_setting_configselect('moodlecourse/visible', new lang_string('visible'), new lang_string('visible_help'),
- 1, $choices));
- // Course format.
- $temp->add(new admin_setting_heading('courseformathdr', new lang_string('type_format', 'plugin'), ''));
- $courseformats = get_sorted_course_formats(true);
- $formcourseformats = array();
- foreach ($courseformats as $courseformat) {
- $formcourseformats[$courseformat] = new lang_string('pluginname', "format_$courseformat");
- }
- $temp->add(new admin_setting_configselect('moodlecourse/format', new lang_string('format'), new lang_string('coursehelpformat'),
- 'topics', $formcourseformats));
- $temp->add(new admin_setting_configtext('moodlecourse/maxsections', new lang_string('maxnumberweeks'),
- new lang_string('maxnumberweeks_desc'), 52));
- $temp->add(new admin_settings_num_course_sections('moodlecourse/numsections', new lang_string('numberweeks'),
- new lang_string('coursehelpnumberweeks'), 4));
- $choices = array();
- $choices['0'] = new lang_string('hiddensectionscollapsed');
- $choices['1'] = new lang_string('hiddensectionsinvisible');
- $temp->add(new admin_setting_configselect('moodlecourse/hiddensections', new lang_string('hiddensections'),
- new lang_string('coursehelphiddensections'), 0, $choices));
- $choices = array();
- $choices[COURSE_DISPLAY_SINGLEPAGE] = new lang_string('coursedisplay_single');
- $choices[COURSE_DISPLAY_MULTIPAGE] = new lang_string('coursedisplay_multi');
- $temp->add(new admin_setting_configselect('moodlecourse/coursedisplay', new lang_string('coursedisplay'),
- new lang_string('coursedisplay_help'), COURSE_DISPLAY_SINGLEPAGE, $choices));
- // Appearance.
- $temp->add(new admin_setting_heading('appearancehdr', new lang_string('appearance'), ''));
- $languages = array();
- $languages[''] = new lang_string('forceno');
- $languages += get_string_manager()->get_list_of_translations();
- $temp->add(new admin_setting_configselect('moodlecourse/lang', new lang_string('forcelanguage'), '', key($languages),
- $languages));
- $options = range(0, 10);
- $temp->add(new admin_setting_configselect('moodlecourse/newsitems', new lang_string('newsitemsnumber'),
- new lang_string('coursehelpnewsitemsnumber'), 5, $options));
- $temp->add(new admin_setting_configselect('moodlecourse/showgrades', new lang_string('showgrades'),
- new lang_string('coursehelpshowgrades'), 1, array(0 => new lang_string('no'), 1 => new lang_string('yes'))));
- $temp->add(new admin_setting_configselect('moodlecourse/showreports', new lang_string('showreports'), '', 0,
- array(0 => new lang_string('no'), 1 => new lang_string('yes'))));
- // Files and uploads.
- $temp->add(new admin_setting_heading('filesanduploadshdr', new lang_string('filesanduploads'), ''));
- if (!empty($CFG->legacyfilesinnewcourses)) {
- $choices = array('0'=>new lang_string('no'), '2'=>new lang_string('yes'));
- $temp->add(new admin_setting_configselect('moodlecourse/legacyfiles', new lang_string('courselegacyfiles'),
- new lang_string('courselegacyfiles_help'), key($choices), $choices));
- }
- $currentmaxbytes = get_config('moodlecourse', 'maxbytes');
- if (isset($CFG->maxbytes)) {
- $choices = get_max_upload_sizes($CFG->maxbytes, 0, 0, $currentmaxbytes);
- } else {
- $choices = get_max_upload_sizes(0, 0, 0, $currentmaxbytes);
- }
- $temp->add(new admin_setting_configselect('moodlecourse/maxbytes', new lang_string('maximumupload'),
- new lang_string('coursehelpmaximumupload'), key($choices), $choices));
- // Completion tracking.
- $temp->add(new admin_setting_heading('progress', new lang_string('completion','completion'), ''));
- $temp->add(new admin_setting_configselect('moodlecourse/enablecompletion', new lang_string('completion', 'completion'),
- new lang_string('enablecompletion_help', 'completion'), 0, array(0 => new lang_string('no'), 1 => new lang_string('yes'))));
- // Groups.
- $temp->add(new admin_setting_heading('groups', new lang_string('groups', 'group'), ''));
- $choices = array();
- $choices[NOGROUPS] = new lang_string('groupsnone', 'group');
- $choices[SEPARATEGROUPS] = new lang_string('groupsseparate', 'group');
- $choices[VISIBLEGROUPS] = new lang_string('groupsvisible', 'group');
- $temp->add(new admin_setting_configselect('moodlecourse/groupmode', new lang_string('groupmode'), '', key($choices),$choices));
- $temp->add(new admin_setting_configselect('moodlecourse/groupmodeforce', new lang_string('force'), new lang_string('coursehelpforce'), 0,array(0 => new lang_string('no'), 1 => new lang_string('yes'))));
- $ADMIN->add('courses', $temp);
- // "courserequests" settingpage.
- $temp = new admin_settingpage('courserequest', new lang_string('courserequest'));
- $temp->add(new admin_setting_configcheckbox('enablecourserequests', new lang_string('enablecourserequests', 'admin'), new lang_string('configenablecourserequests', 'admin'), 0));
- $temp->add(new admin_settings_coursecat_select('defaultrequestcategory', new lang_string('defaultrequestcategory', 'admin'), new lang_string('configdefaultrequestcategory', 'admin'), 1));
- $temp->add(new admin_setting_configcheckbox('requestcategoryselection', new lang_string('requestcategoryselection', 'admin'), new lang_string('configrequestcategoryselection', 'admin'), 0));
- $temp->add(new admin_setting_users_with_capability('courserequestnotify', new lang_string('courserequestnotify', 'admin'), new lang_string('configcourserequestnotify2', 'admin'), array(), 'moodle/site:approvecourse'));
- $ADMIN->add('courses', $temp);
- // Pending course requests.
- if (!empty($CFG->enablecourserequests)) {
- $ADMIN->add('courses', new admin_externalpage('coursespending', new lang_string('pendingrequests'),
- $CFG->wwwroot . '/course/pending.php', array('moodle/site:approvecourse')));
- }
- // Add a category for backups.
- $ADMIN->add('courses', new admin_category('backups', new lang_string('backups','admin')));
- // Create a page for general backups configuration and defaults.
- $temp = new admin_settingpage('backupgeneralsettings', new lang_string('generalbackdefaults', 'backup'), 'moodle/backup:backupcourse');
- // General configuration section.
- $temp->add(new admin_setting_configselect('backup/loglifetime', new lang_string('loglifetime', 'backup'), new lang_string('configloglifetime', 'backup'), 30, array(
- 1 => new lang_string('numdays', '', 1),
- 2 => new lang_string('numdays', '', 2),
- 3 => new lang_string('numdays', '', 3),
- 5 => new lang_string('numdays', '', 5),
- 7 => new lang_string('numdays', '', 7),
- 10 => new lang_string('numdays', '', 10),
- 14 => new lang_string('numdays', '', 14),
- 20 => new lang_string('numdays', '', 20),
- 30 => new lang_string('numdays', '', 30),
- 60 => new lang_string('numdays', '', 60),
- 90 => new lang_string('numdays', '', 90),
- 120 => new lang_string('numdays', '', 120),
- 180 => new lang_string('numdays', '', 180),
- 365 => new lang_string('numdays', '', 365)
- )));
- // General defaults section.
- $temp->add(new admin_setting_heading('generalsettings', new lang_string('generalsettings', 'backup'), ''));
- $temp->add(new admin_setting_configcheckbox_with_lock('backup/backup_general_users', new lang_string('generalusers','backup'), new lang_string('configgeneralusers','backup'), array('value'=>1, 'locked'=>0)));
- $temp->add(new admin_setting_configcheckbox_with_lock('backup/backup_general_anonymize', new lang_string('generalanonymize','backup'), new lang_string('configgeneralanonymize','backup'), array('value'=>0, 'locked'=>0)));
- $temp->add(new admin_setting_configcheckbox_with_lock('backup/backup_general_role_assignments', new lang_string('generalroleassignments','backup'), new lang_string('configgeneralroleassignments','backup'), array('value'=>1, 'locked'=>0)));
- $temp->add(new admin_setting_configcheckbox_with_lock('backup/backup_general_activities', new lang_string('generalactivities','backup'), new lang_string('configgeneralactivities','backup'), array('value'=>1, 'locked'=>0)));
- $temp->add(new admin_setting_configcheckbox_with_lock('backup/backup_general_blocks', new lang_string('generalblocks','backup'), new lang_string('configgeneralblocks','backup'), array('value'=>1, 'locked'=>0)));
- $temp->add(new admin_setting_configcheckbox_with_lock('backup/backup_general_filters', new lang_string('generalfilters','backup'), new lang_string('configgeneralfilters','backup'), array('value'=>1, 'locked'=>0)));
- $temp->add(new admin_setting_configcheckbox_with_lock('backup/backup_general_comments', new lang_string('generalcomments','backup'), new lang_string('configgeneralcomments','backup'), array('value'=>1, 'locked'=>0)));
- $temp->add(new admin_setting_configcheckbox_with_lock('backup/backup_general_badges', new lang_string('generalbadges','backup'), new lang_string('configgeneralbadges','backup'), array('value'=>1,'locked'=>0)));
- $temp->add(new admin_setting_configcheckbox_with_lock('backup/backup_general_userscompletion', new lang_string('generaluserscompletion','backup'), new lang_string('configgeneraluserscompletion','backup'), array('value'=>1, 'locked'=>0)));
- $temp->add(new admin_setting_configcheckbox_with_lock('backup/backup_general_logs', new lang_string('generallogs','backup'), new lang_string('configgenerallogs','backup'), array('value'=>0, 'locked'=>0)));
- $temp->add(new admin_setting_configcheckbox_with_lock('backup/backup_general_histories', new lang_string('generalhistories','backup'), new lang_string('configgeneralhistories','backup'), array('value'=>0, 'locked'=>0)));
- $temp->add(new admin_setting_configcheckbox_with_lock('backup/backup_general_questionbank', new lang_string('generalquestionbank','backup'), new lang_string('configgeneralquestionbank','backup'), array('value'=>1, 'locked'=>0)));
- $temp->add(new admin_setting_configcheckbox_with_lock('backup/backup_general_groups',
- new lang_string('generalgroups', 'backup'), new lang_string('configgeneralgroups', 'backup'),
- array('value' => 1, 'locked' => 0)));
- $ADMIN->add('backups', $temp);
- // Create a page for general import configuration and defaults.
- $temp = new admin_settingpage('importgeneralsettings', new lang_string('importgeneralsettings', 'backup'), 'moodle/backup:backupcourse');
- $temp->add(new admin_setting_configtext('backup/import_general_maxresults', new lang_string('importgeneralmaxresults', 'backup'), new lang_string('importgeneralmaxresults_desc', 'backup'), 10));
- $temp->add(new admin_setting_configcheckbox('backup/import_general_duplicate_admin_allowed',
- new lang_string('importgeneralduplicateadminallowed', 'backup'),
- new lang_string('importgeneralduplicateadminallowed_desc', 'backup'), 0));
- $ADMIN->add('backups', $temp);
- // Create a page for automated backups configuration and defaults.
- $temp = new admin_settingpage('automated', new lang_string('automatedsetup','backup'), 'moodle/backup:backupcourse');
- // Automated configuration section.
- $temp->add(new admin_setting_configselect('backup/backup_auto_active', new lang_string('active'), new lang_string('autoactivedescription', 'backup'), 0, array(
- 0 => new lang_string('autoactivedisabled', 'backup'),
- 1 => new lang_string('autoactiveenabled', 'backup'),
- 2 => new lang_string('autoactivemanual', 'backup')
- )));
- $temp->add(new admin_setting_special_backupdays());
- $temp->add(new admin_setting_configtime('backup/backup_auto_hour', 'backup_auto_minute', new lang_string('executeat'),
- new lang_string('backupexecuteathelp'), array('h' => 0, 'm' => 0)));
- $storageoptions = array(
- 0 => new lang_string('storagecourseonly', 'backup'),
- 1 => new lang_string('storageexternalonly', 'backup'),
- 2 => new lang_string('storagecourseandexternal', 'backup')
- );
- $temp->add(new admin_setting_configselect('backup/backup_auto_storage', new lang_string('automatedstorage', 'backup'), new lang_string('automatedstoragehelp', 'backup'), 0, $storageoptions));
- $temp->add(new admin_setting_special_backup_auto_destination());
- $maxkeptoptions = array(
- 0 => new lang_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');
- $temp->add(new admin_setting_configselect('backup/backup_auto_max_kept', new lang_string('automatedmaxkept', 'backup'),
- new lang_string('automatedmaxkepthelp', 'backup'), 1, $maxkeptoptions));
- $automateddeletedaysoptions = array(
- 0 => new lang_string('never'),
- 1000 => new lang_string('numdays', '', 1000),
- 365 => new lang_string('numdays', '', 365),
- 180 => new lang_string('numdays', '', 180),
- 150 => new lang_string('numdays', '', 150),
- 120 => new lang_string('numdays', '', 120),
- 90 => new lang_string('numdays', '', 90),
- 60 => new lang_string('numdays', '', 60),
- 35 => new lang_string('numdays', '', 35),
- 10 => new lang_string('numdays', '', 10),
- 5 => new lang_string('numdays', '', 5),
- 2 => new lang_string('numdays', '', 2)
- );
- $temp->add(new admin_setting_configselect('backup/backup_auto_delete_days', new lang_string('automateddeletedays', 'backup'),
- '', 0, $automateddeletedaysoptions));
- $minkeptoptions = array(
- 0 => new lang_string('none'),
- 1 => '1',
- 2 => '2',
- 5 => '5',
- 10 => '10',
- 20 => '20',
- 30 => '30',
- 40 => '40',
- 50 => '50',
- 100 => '100',
- 200 => '200',
- 300 => '300',
- 400 => '400'
- );
- $temp->add(new admin_setting_configselect('backup/backup_auto_min_kept', new lang_string('automatedminkept', 'backup'),
- new lang_string('automatedminkepthelp', 'backup'), 0, $minkeptoptions));
- $temp->add(new admin_setting_configcheckbox('backup/backup_shortname', new lang_string('backup_shortname', 'admin'), new lang_string('backup_shortnamehelp', 'admin'), 0));
- $temp->add(new admin_setting_configcheckbox('backup/backup_auto_skip_hidden', new lang_string('skiphidden', 'backup'), new lang_string('skiphiddenhelp', 'backup'), 1));
- $temp->add(new admin_setting_configselect('backup/backup_auto_skip_modif_days', new lang_string('skipmodifdays', 'backup'), new lang_string('skipmodifdayshelp', 'backup'), 30, array(
- 0 => new lang_string('never'),
- 1 => new lang_string('numdays', '', 1),
- 2 => new lang_string('numdays', '', 2),
- 3 => new lang_string('numdays', '', 3),
- 5 => new lang_string('numdays', '', 5),
- 7 => new lang_string('numdays', '', 7),
- 10 => new lang_string('numdays', '', 10),
- 14 => new lang_string('numdays', '', 14),
- 20 => new lang_string('numdays', '', 20),
- 30 => new lang_string('numdays', '', 30),
- 60 => new lang_string('numdays', '', 60),
- 90 => new lang_string('numdays', '', 90),
- 120 => new lang_string('numdays', '', 120),
- 180 => new lang_string('numdays', '', 180),
- 365 => new lang_string('numdays', '', 365)
- )));
- $temp->add(new admin_setting_configcheckbox('backup/backup_auto_skip_modif_prev', new lang_string('skipmodifprev', 'backup'), new lang_string('skipmodifprevhelp', 'backup'), 0));
- // Automated defaults section.
- $temp->add(new admin_setting_heading('automatedsettings', new lang_string('automatedsettings','backup'), ''));
- $temp->add(new admin_setting_configcheckbox('backup/backup_auto_users', new lang_string('generalusers', 'backup'), new lang_string('configgeneralusers', 'backup'), 1));
- $temp->add(new admin_setting_configcheckbox('backup/backup_auto_role_assignments', new lang_string('generalroleassignments','backup'), new lang_string('configgeneralroleassignments','backup'), 1));
- $temp->add(new admin_setting_configcheckbox('backup/backup_auto_activities', new lang_string('generalactivities','backup'), new lang_string('configgeneralactivities','backup'), 1));
- $temp->add(new admin_setting_configcheckbox('backup/backup_auto_blocks', new lang_string('generalblocks','backup'), new lang_string('configgeneralblocks','backup'), 1));
- $temp->add(new admin_setting_configcheckbox('backup/backup_auto_filters', new lang_string('generalfilters','backup'), new lang_string('configgeneralfilters','backup'), 1));
- $temp->add(new admin_setting_configcheckbox('backup/backup_auto_comments', new lang_string('generalcomments','backup'), new lang_string('configgeneralcomments','backup'), 1));
- $temp->add(new admin_setting_configcheckbox('backup/backup_auto_badges', new lang_string('generalbadges','backup'), new lang_string('configgeneralbadges','backup'), 1));
- $temp->add(new admin_setting_configcheckbox('backup/backup_auto_userscompletion', new lang_string('generaluserscompletion','backup'), new lang_string('configgeneraluserscompletion','backup'), 1));
- $temp->add(new admin_setting_configcheckbox('backup/backup_auto_logs', new lang_string('generallogs', 'backup'), new lang_string('configgenerallogs', 'backup'), 0));
- $temp->add(new admin_setting_configcheckbox('backup/backup_auto_histories', new lang_string('generalhistories','backup'), new lang_string('configgeneralhistories','backup'), 0));
- $temp->add(new admin_setting_configcheckbox('backup/backup_auto_questionbank', new lang_string('generalquestionbank','backup'), new lang_string('configgeneralquestionbank','backup'), 1));
- $temp->add(new admin_setting_configcheckbox('backup/backup_auto_groups', new lang_string('generalgroups', 'backup'),
- new lang_string('configgeneralgroups', 'backup'), 1));
- //$temp->add(new admin_setting_configcheckbox('backup/backup_auto_messages', new lang_string('messages', 'message'), new lang_string('backupmessageshelp','message'), 0));
- //$temp->add(new admin_setting_configcheckbox('backup/backup_auto_blogs', new lang_string('blogs', 'blog'), new lang_string('backupblogshelp','blog'), 0));
- $ADMIN->add('backups', $temp);
- }
|