mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
b032b49099
* New Capability report put under Users -> Permissions * Miscellaneous category renamed to Development * Unit tests and Functional DB test moved to be under Development. * The hard-coded hack that was used to change the permission that controls the Backups and stats reports replaced with settings.php files. * There were two hidden Miscellaneous things in the old category, so I moved them. Multilan upgrade now under Lanuages, and Online assignment cleanup now under Plugins -> Activity modules. Both still hidden. There was already a way for admin report plugins to control where they appeared in the tree, but it was not documented, so see http://docs.moodle.org/en/Development:Admin_reports
30 lines
2.1 KiB
PHP
30 lines
2.1 KiB
PHP
<?php // $Id$
|
|
|
|
// This file defines settingpages and externalpages under the "appearance" category
|
|
|
|
if ($hassiteconfig
|
|
or has_capability('moodle/site:langeditmaster', $systemcontext)
|
|
or has_capability('moodle/site:langeditlocal', $systemcontext)) { // speedup for non-admins, add all caps used on this page
|
|
|
|
// "languageandlocation" settingpage
|
|
$temp = new admin_settingpage('langsettings', get_string('languagesettings', 'admin'));
|
|
$temp->add(new admin_setting_configcheckbox('autolang', get_string('autolang', 'admin'), get_string('configautolang', 'admin'), 1));
|
|
$temp->add(new admin_setting_configselect('lang', get_string('lang', 'admin'), get_string('configlang', 'admin'), current_language(), get_list_of_languages())); // $CFG->lang might be set in installer already, default en or en_utf8 is in setup.php
|
|
$temp->add(new admin_setting_configcheckbox('langmenu', get_string('langmenu', 'admin'), get_string('configlangmenu', 'admin'), 1));
|
|
$temp->add(new admin_setting_langlist());
|
|
$temp->add(new admin_setting_configcheckbox('langcache', get_string('langcache', 'admin'), get_string('configlangcache', 'admin'), 1));
|
|
$temp->add(new admin_setting_configtext('locale', get_string('localetext', 'admin'), get_string('configlocale', 'admin'), '', PARAM_FILE));
|
|
$temp->add(new admin_setting_configselect('latinexcelexport', get_string('latinexcelexport', 'admin'), get_string('configlatinexcelexport', 'admin'), '0', array('0'=>'Unicode','1'=>'Latin')));
|
|
|
|
$ADMIN->add('language', $temp);
|
|
|
|
$ADMIN->add('language', new admin_externalpage('langedit', get_string('langedit', 'admin'), "$CFG->wwwroot/$CFG->admin/lang.php", array('moodle/site:langeditmaster', 'moodle/site:langeditlocal') ));
|
|
$ADMIN->add('language', new admin_externalpage('langimport', get_string('langpacks', 'admin'), "$CFG->wwwroot/$CFG->admin/langimport.php"));
|
|
|
|
// Hidden multilang upgrade page.
|
|
$ADMIN->add('language', new admin_externalpage('multilangupgrade', get_string('multilangupgrade', 'admin'), $CFG->wwwroot.'/'.$CFG->admin.'/multilangupgrade.php', 'moodle/site:config', !empty($CFG->filter_multilang_converted)));
|
|
|
|
} // end of speedup
|
|
|
|
?>
|