MDL-8249 localise standard role names and descriptions if empty
[moodle.git] / admin / settings / frontpage.php
blobc2cef648395fa5b7c08abd9b366b625e6798f922
1 <?php
3 // This file defines everything related to frontpage
5 if (!during_initial_install()) { //do not use during installation
6 $frontpagecontext = get_context_instance(CONTEXT_COURSE, SITEID);
8 if ($hassiteconfig or has_any_capability(array(
9 'moodle/course:update',
10 'moodle/role:assign',
11 'moodle/restore:restorecourse',
12 'moodle/backup:backupcourse',
13 'moodle/course:managefiles',
14 'moodle/question:add',
15 'moodle/question:editmine',
16 'moodle/question:editall',
17 'moodle/question:viewmine',
18 'moodle/question:viewall',
19 'moodle/question:movemine',
20 'moodle/question:moveall'), $frontpagecontext)) {
22 // "frontpage" settingpage
23 $temp = new admin_settingpage('frontpagesettings', new lang_string('frontpagesettings','admin'), 'moodle/course:update', false, $frontpagecontext);
24 $temp->add(new admin_setting_sitesettext('fullname', new lang_string('fullsitename'), '', NULL)); // no default
25 $temp->add(new admin_setting_sitesettext('shortname', new lang_string('shortsitename'), '', NULL)); // no default
26 $temp->add(new admin_setting_special_frontpagedesc());
27 $temp->add(new admin_setting_courselist_frontpage(false)); // non-loggedin version of the setting (that's what the parameter is for :) )
28 $temp->add(new admin_setting_courselist_frontpage(true)); // loggedin version of the setting
30 $options = array();
31 $options[] = new lang_string('unlimited');
32 for ($i=1; $i<100; $i++) {
33 $options[$i] = $i;
35 $temp->add(new admin_setting_configselect('maxcategorydepth', new lang_string('configsitemaxcategorydepth','admin'), new lang_string('configsitemaxcategorydepthhelp','admin'), 0, $options));
37 $temp->add(new admin_setting_sitesetcheckbox('numsections', new lang_string('sitesection'), new lang_string('sitesectionhelp','admin'), 1));
38 $temp->add(new admin_setting_sitesetselect('newsitems', new lang_string('newsitemsnumber'), '', 3,
39 array('0' => '0',
40 '1' => '1',
41 '2' => '2',
42 '3' => '3',
43 '4' => '4',
44 '5' => '5',
45 '6' => '6',
46 '7' => '7',
47 '8' => '8',
48 '9' => '9',
49 '10' => '10')));
50 $temp->add(new admin_setting_configtext('commentsperpage', new lang_string('commentsperpage', 'admin'), '', 15, PARAM_INT));
52 $temp->add(new admin_setting_configtext('coursesperpage', new lang_string('coursesperpage', 'admin'), new lang_string('configcoursesperpage', 'admin'), 20, PARAM_INT));
54 // front page default role
55 $options = array(0=>new lang_string('none')); // roles to choose from
56 $defaultfrontpageroleid = 0;
57 $roles = role_fix_names(get_all_roles(), null, ROLENAME_ORIGINALANDSHORT);
58 foreach ($roles as $role) {
59 if (empty($role->archetype) or $role->archetype === 'guest' or $role->archetype === 'frontpage' or $role->archetype === 'student') {
60 $options[$role->id] = $role->localname;
61 if ($role->archetype === 'frontpage') {
62 $defaultfrontpageroleid = $role->id;
66 if ($defaultfrontpageroleid and (!isset($CFG->defaultfrontpageroleid) or $CFG->defaultfrontpageroleid)) {
67 //frotpage role may not exist in old upgraded sites
68 unset($options[0]);
70 $temp->add(new admin_setting_configselect('defaultfrontpageroleid', new lang_string('frontpagedefaultrole', 'admin'), '', $defaultfrontpageroleid, $options));
73 $ADMIN->add('frontpage', $temp);
75 $ADMIN->add('frontpage', new admin_externalpage('frontpageroles', new lang_string('frontpageroles', 'admin'), "$CFG->wwwroot/$CFG->admin/roles/assign.php?contextid=" . $frontpagecontext->id, 'moodle/role:assign', false, $frontpagecontext));
77 $ADMIN->add('frontpage', new admin_externalpage('frontpagefilters', new lang_string('frontpagefilters', 'admin'), "$CFG->wwwroot/filter/manage.php?contextid=" . $frontpagecontext->id, 'moodle/filter:manage', false, $frontpagecontext));
79 $ADMIN->add('frontpage', new admin_externalpage('frontpagebackup', new lang_string('frontpagebackup', 'admin'), $CFG->wwwroot.'/backup/backup.php?id='.SITEID, 'moodle/backup:backupcourse', false, $frontpagecontext));
81 $ADMIN->add('frontpage', new admin_externalpage('frontpagerestore', new lang_string('frontpagerestore', 'admin'), $CFG->wwwroot.'/files/index.php?id='.SITEID.'&amp;wdir=/backupdata', 'moodle/restore:restorecourse', false, $frontpagecontext));
83 $questioncapabilities = array(
84 'moodle/question:add',
85 'moodle/question:editmine',
86 'moodle/question:editall',
87 'moodle/question:viewmine',
88 'moodle/question:viewall',
89 'moodle/question:movemine',
90 'moodle/question:moveall');
91 $ADMIN->add('frontpage', new admin_externalpage('frontpagequestions', new lang_string('frontpagequestions', 'admin'), $CFG->wwwroot.'/question/edit.php?courseid='.SITEID, $questioncapabilities, false, $frontpagecontext));
93 if (!empty($SITE->legacyfiles) and $SITE->legacyfiles === 2) {
94 $ADMIN->add('frontpage', new admin_externalpage('sitefiles', new lang_string('sitelegacyfiles'), $CFG->wwwroot . '/files/index.php?id=' . SITEID, 'moodle/course:managefiles', false, $frontpagecontext));