<?php
> // This file is part of Moodle - https://moodle.org/
> //
// This file defines settingpages and externalpages under the "server" category
> // Moodle is free software: you can redistribute it and/or modify
> // it under the terms of the GNU General Public License as published by
if ($hassiteconfig) { // speedup for non-admins, add all caps used on this page
> // the Free Software Foundation, either version 3 of the License, or
> // (at your option) any later version.
// "systempaths" settingpage
> //
$temp = new admin_settingpage('systempaths', new lang_string('systempaths','admin'));
> // Moodle is distributed in the hope that it will be useful,
$temp->add(new admin_setting_configexecutable('pathtophp', new lang_string('pathtophp', 'admin'),
> // but WITHOUT ANY WARRANTY; without even the implied warranty of
new lang_string('configpathtophp', 'admin'), ''));
> // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
$temp->add(new admin_setting_configexecutable('pathtodu', new lang_string('pathtodu', 'admin'), new lang_string('configpathtodu', 'admin'), ''));
> // GNU General Public License for more details.
$temp->add(new admin_setting_configexecutable('aspellpath', new lang_string('aspellpath', 'admin'), new lang_string('edhelpaspellpath'), ''));
> //
$temp->add(new admin_setting_configexecutable('pathtodot', new lang_string('pathtodot', 'admin'), new lang_string('pathtodot_help', 'admin'), ''));
> // You should have received a copy of the GNU General Public License
$temp->add(new admin_setting_configexecutable('pathtogs', new lang_string('pathtogs', 'admin'), new lang_string('pathtogs_help', 'admin'), '/usr/bin/gs'));
> // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
$temp->add(new admin_setting_configexecutable('pathtopython', new lang_string('pathtopython', 'admin'),
>
new lang_string('pathtopythondesc', 'admin'), ''));
> /**
$ADMIN->add('server', $temp);
> * Defines settingpages and externalpages under the "server" category.
> *
> * @package core
> * @category admin
// "supportcontact" settingpage
> * @copyright 2006 Martin Dougiamas
$temp = new admin_settingpage('supportcontact', new lang_string('supportcontact','admin'));
> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
$primaryadmin = get_admin();
> */
< // This file defines settingpages and externalpages under the "server" category
> defined('MOODLE_INTERNAL') || die();
< if ($hassiteconfig) { // speedup for non-admins, add all caps used on this page
<
< // "systempaths" settingpage
> if ($hassiteconfig) {
> // System paths.
< $temp->add(new admin_setting_configexecutable('pathtodu', new lang_string('pathtodu', 'admin'), new lang_string('configpathtodu', 'admin'), ''));
< $temp->add(new admin_setting_configexecutable('aspellpath', new lang_string('aspellpath', 'admin'), new lang_string('edhelpaspellpath'), ''));
< $temp->add(new admin_setting_configexecutable('pathtodot', new lang_string('pathtodot', 'admin'), new lang_string('pathtodot_help', 'admin'), ''));
< $temp->add(new admin_setting_configexecutable('pathtogs', new lang_string('pathtogs', 'admin'), new lang_string('pathtogs_help', 'admin'), '/usr/bin/gs'));
> $temp->add(new admin_setting_configexecutable('pathtodu', new lang_string('pathtodu', 'admin'),
> new lang_string('configpathtodu', 'admin'), ''));
> $temp->add(new admin_setting_configexecutable('aspellpath', new lang_string('aspellpath', 'admin'),
> new lang_string('edhelpaspellpath'), ''));
> $temp->add(new admin_setting_configexecutable('pathtodot', new lang_string('pathtodot', 'admin'),
> new lang_string('pathtodot_help', 'admin'), ''));
> $temp->add(new admin_setting_configexecutable('pathtogs', new lang_string('pathtogs', 'admin'),
> new lang_string('pathtogs_help', 'admin'), '/usr/bin/gs'));
<
<
< // "supportcontact" settingpage
> // Support contact.
< // no defaults during installation - admin user must be created first
< $primaryadminemail = NULL;
< $primaryadminname = NULL;
> // No defaults during installation - admin user must be created first.
> $primaryadminemail = null;
> $primaryadminname = null;
< $temp->add(new admin_setting_configtext('supportpage', new lang_string('supportpage', 'admin'), new lang_string('configsupportpage', 'admin'), '', PARAM_URL));
> $temp->add(new admin_setting_configtext('supportpage', new lang_string('supportpage', 'admin'),
> new lang_string('configsupportpage', 'admin'), '', PARAM_URL));
$ADMIN->add('server', $temp);
<
< // "sessionhandling" settingpage
> // Session handling.
$temp = new admin_settingpage('sessionhandling', new lang_string('sessionhandling', 'admin'));
if (empty($CFG->session_handler_class) and $DB->session_lock_supported()) {
< $temp->add(new admin_setting_configcheckbox('dbsessions', new lang_string('dbsessions', 'admin'), new lang_string('configdbsessions', 'admin'), 0));
> $temp->add(new admin_setting_configcheckbox('dbsessions', new lang_string('dbsessions', 'admin'),
> new lang_string('configdbsessions', 'admin'), 0));
}
$temp->add(new admin_setting_configduration('sessiontimeout', new lang_string('sessiontimeout', 'admin'),
new lang_string('configsessiontimeout', 'admin'), 8 * 60 * 60));
< $temp->add(new admin_setting_configtext('sessioncookie', new lang_string('sessioncookie', 'admin'), new lang_string('configsessioncookie', 'admin'), '', PARAM_ALPHANUM));
< $temp->add(new admin_setting_configtext('sessioncookiepath', new lang_string('sessioncookiepath', 'admin'), new lang_string('configsessioncookiepath', 'admin'), '', PARAM_RAW));
< $temp->add(new admin_setting_configtext('sessioncookiedomain', new lang_string('sessioncookiedomain', 'admin'), new lang_string('configsessioncookiedomain', 'admin'), '', PARAM_RAW, 50));
> $temp->add(new admin_setting_configtext('sessioncookie', new lang_string('sessioncookie', 'admin'),
> new lang_string('configsessioncookie', 'admin'), '', PARAM_ALPHANUM));
> $temp->add(new admin_setting_configtext('sessioncookiepath', new lang_string('sessioncookiepath', 'admin'),
> new lang_string('configsessioncookiepath', 'admin'), '', PARAM_RAW));
> $temp->add(new admin_setting_configtext('sessioncookiedomain', new lang_string('sessioncookiedomain', 'admin'),
> new lang_string('configsessioncookiedomain', 'admin'), '', PARAM_RAW, 50));
$ADMIN->add('server', $temp);
<
< // "stats" settingpage
> // Statistics.
$temp = new admin_settingpage('stats', new lang_string('stats'), 'moodle/site:config', empty($CFG->enablestats));
< $temp->add(new admin_setting_configselect('statsfirstrun', new lang_string('statsfirstrun', 'admin'), new lang_string('configstatsfirstrun', 'admin'), 'none', array('none' => new lang_string('none'),
> $temp->add(new admin_setting_configselect('statsfirstrun', new lang_string('statsfirstrun', 'admin'),
> new lang_string('configstatsfirstrun', 'admin'), 'none',
> [
> 'none' => new lang_string('none'),
60*60*24*7 => new lang_string('numweeks','moodle',1),
60*60*24*14 => new lang_string('numweeks','moodle',2),
60*60*24*21 => new lang_string('numweeks','moodle',3),
60*60*24*28 => new lang_string('nummonths','moodle',1),
60*60*24*56 => new lang_string('nummonths','moodle',2),
60*60*24*84 => new lang_string('nummonths','moodle',3),
60*60*24*112 => new lang_string('nummonths','moodle',4),
60*60*24*140 => new lang_string('nummonths','moodle',5),
60*60*24*168 => new lang_string('nummonths','moodle',6),
< 'all' => new lang_string('all') )));
< $temp->add(new admin_setting_configselect('statsmaxruntime', new lang_string('statsmaxruntime', 'admin'), new lang_string('configstatsmaxruntime3', 'admin'), 0, array(0 => new lang_string('untilcomplete'),
> 'all' => new lang_string('all')
> ]
> ));
> $temp->add(new admin_setting_configselect('statsmaxruntime', new lang_string('statsmaxruntime', 'admin'),
> new lang_string('configstatsmaxruntime3', 'admin'), 0,
> [
> 0 => new lang_string('untilcomplete'),
60*30 => '10 '.new lang_string('minutes'),
60*30 => '30 '.new lang_string('minutes'),
60*60 => '1 '.new lang_string('hour'),
60*60*2 => '2 '.new lang_string('hours'),
60*60*3 => '3 '.new lang_string('hours'),
60*60*4 => '4 '.new lang_string('hours'),
60*60*5 => '5 '.new lang_string('hours'),
60*60*6 => '6 '.new lang_string('hours'),
60*60*7 => '7 '.new lang_string('hours'),
< 60*60*8 => '8 '.new lang_string('hours') )));
< $temp->add(new admin_setting_configtext('statsruntimedays', new lang_string('statsruntimedays', 'admin'), new lang_string('configstatsruntimedays', 'admin'), 31, PARAM_INT));
< $temp->add(new admin_setting_configtext('statsuserthreshold', new lang_string('statsuserthreshold', 'admin'), new lang_string('configstatsuserthreshold', 'admin'), 0, PARAM_INT));
> 60 * 60 * 8 => '8 ' . new lang_string('hours'),
> ]
> ));
> $temp->add(new admin_setting_configtext('statsruntimedays', new lang_string('statsruntimedays', 'admin'),
> new lang_string('configstatsruntimedays', 'admin'), 31, PARAM_INT));
> $temp->add(new admin_setting_configtext('statsuserthreshold', new lang_string('statsuserthreshold', 'admin'),
> new lang_string('configstatsuserthreshold', 'admin'), 0, PARAM_INT));
$ADMIN->add('server', $temp);
<
< // "http" settingpage
> // HTTP.
$temp = new admin_settingpage('http', new lang_string('http', 'admin'));
< $temp->add(new admin_setting_configcheckbox('slasharguments', new lang_string('slasharguments', 'admin'), new lang_string('configslasharguments', 'admin'), 1));
> $temp->add(new admin_setting_configcheckbox('slasharguments', new lang_string('slasharguments', 'admin'),
> new lang_string('configslasharguments', 'admin'), 1));
$temp->add(new admin_setting_heading('reverseproxy', new lang_string('reverseproxy', 'admin'), '', ''));
< $options = array(
> $options = [
0 => 'HTTP_CLIENT_IP, HTTP_X_FORWARDED_FOR, REMOTE_ADDR',
GETREMOTEADDR_SKIP_HTTP_CLIENT_IP => 'HTTP_X_FORWARDED_FOR, REMOTE_ADDR',
GETREMOTEADDR_SKIP_HTTP_X_FORWARDED_FOR => 'HTTP_CLIENT, REMOTE_ADDR',
< GETREMOTEADDR_SKIP_HTTP_X_FORWARDED_FOR|GETREMOTEADDR_SKIP_HTTP_CLIENT_IP => 'REMOTE_ADDR');
> GETREMOTEADDR_SKIP_HTTP_X_FORWARDED_FOR | GETREMOTEADDR_SKIP_HTTP_CLIENT_IP => 'REMOTE_ADDR'
> ];
$temp->add(new admin_setting_configselect('getremoteaddrconf', new lang_string('getremoteaddrconf', 'admin'),
new lang_string('configgetremoteaddrconf', 'admin'),
< GETREMOTEADDR_SKIP_DEFAULT, $options));
< $temp->add(new admin_setting_configtext('reverseproxyignore', new lang_string('reverseproxyignore', 'admin'), new lang_string('configreverseproxyignore', 'admin'), ''));
<
< $temp->add(new admin_setting_heading('webproxy', new lang_string('webproxy', 'admin'), new lang_string('webproxyinfo', 'admin')));
< $temp->add(new admin_setting_configtext('proxyhost', new lang_string('proxyhost', 'admin'), new lang_string('configproxyhost', 'admin'), '', PARAM_HOST));
< $temp->add(new admin_setting_configtext('proxyport', new lang_string('proxyport', 'admin'), new lang_string('configproxyport', 'admin'), 0, PARAM_INT));
< $options = array('HTTP'=>'HTTP');
> GETREMOTEADDR_SKIP_HTTP_X_FORWARDED_FOR | GETREMOTEADDR_SKIP_HTTP_CLIENT_IP, $options));
> $temp->add(new admin_setting_configtext('reverseproxyignore', new lang_string('reverseproxyignore', 'admin'),
> new lang_string('configreverseproxyignore', 'admin'), ''));
>
> $temp->add(new admin_setting_heading('webproxy', new lang_string('webproxy', 'admin'),
> new lang_string('webproxyinfo', 'admin')));
> $temp->add(new admin_setting_configtext('proxyhost', new lang_string('proxyhost', 'admin'),
> new lang_string('configproxyhost', 'admin'), '', PARAM_HOST));
> $temp->add(new admin_setting_configtext('proxyport', new lang_string('proxyport', 'admin'),
> new lang_string('configproxyport', 'admin'), 0, PARAM_INT));
> $options = ['HTTP' => 'HTTP'];
if (defined('CURLPROXY_SOCKS5')) {
$options['SOCKS5'] = 'SOCKS5';
}
< $temp->add(new admin_setting_configselect('proxytype', new lang_string('proxytype', 'admin'), new lang_string('configproxytype','admin'), 'HTTP', $options));
< $temp->add(new admin_setting_configtext('proxyuser', new lang_string('proxyuser', 'admin'), new lang_string('configproxyuser', 'admin'), ''));
< $temp->add(new admin_setting_configpasswordunmask('proxypassword', new lang_string('proxypassword', 'admin'), new lang_string('configproxypassword', 'admin'), ''));
< $temp->add(new admin_setting_configtext('proxybypass', new lang_string('proxybypass', 'admin'), new lang_string('configproxybypass', 'admin'), 'localhost, 127.0.0.1'));
> $temp->add(new admin_setting_configselect('proxytype', new lang_string('proxytype', 'admin'),
> new lang_string('configproxytype', 'admin'), 'HTTP', $options));
> $temp->add(new admin_setting_configtext('proxyuser', new lang_string('proxyuser', 'admin'),
> new lang_string('configproxyuser', 'admin'), ''));
> $temp->add(new admin_setting_configpasswordunmask('proxypassword', new lang_string('proxypassword', 'admin'),
> new lang_string('configproxypassword', 'admin'), ''));
> $temp->add(new admin_setting_configtext('proxybypass', new lang_string('proxybypass', 'admin'),
> new lang_string('configproxybypass', 'admin'), 'localhost, 127.0.0.1'));
$ADMIN->add('server', $temp);
$temp = new admin_settingpage('maintenancemode', new lang_string('sitemaintenancemode', 'admin'));
< $options = array(0=>new lang_string('disable'), 1=>new lang_string('enable'));
> $options = [0 => new lang_string('disable'), 1 => new lang_string('enable')];
$temp->add(new admin_setting_configselect('maintenance_enabled', new lang_string('sitemaintenancemode', 'admin'),
new lang_string('helpsitemaintenance', 'admin'), 0, $options));
$temp->add(new admin_setting_confightmleditor('maintenance_message', new lang_string('optionalmaintenancemessage', 'admin'),
'', ''));
$ADMIN->add('server', $temp);
> // Cleanup.
$temp = new admin_settingpage('cleanup', new lang_string('cleanup', 'admin'));
< $temp->add(new admin_setting_configselect('deleteunconfirmed', new lang_string('deleteunconfirmed', 'admin'), new lang_string('configdeleteunconfirmed', 'admin'), 168, array(0 => new lang_string('never'),
> $temp->add(new admin_setting_configselect('deleteunconfirmed', new lang_string('deleteunconfirmed', 'admin'),
> new lang_string('configdeleteunconfirmed', 'admin'), 168,
> [
> 0 => new lang_string('never'),
168 => new lang_string('numdays', '', 7),
144 => new lang_string('numdays', '', 6),
120 => new lang_string('numdays', '', 5),
96 => new lang_string('numdays', '', 4),
72 => new lang_string('numdays', '', 3),
48 => new lang_string('numdays', '', 2),
24 => new lang_string('numdays', '', 1),
12 => new lang_string('numhours', '', 12),
6 => new lang_string('numhours', '', 6),
< 1 => new lang_string('numhours', '', 1))));
> 1 => new lang_string('numhours', '', 1),
> ]
> ));
< $temp->add(new admin_setting_configselect('deleteincompleteusers', new lang_string('deleteincompleteusers', 'admin'), new lang_string('configdeleteincompleteusers', 'admin'), 0, array(0 => new lang_string('never'),
> $temp->add(new admin_setting_configselect('deleteincompleteusers', new lang_string('deleteincompleteusers', 'admin'),
> new lang_string('configdeleteincompleteusers', 'admin'), 0,
> [
> 0 => new lang_string('never'),
168 => new lang_string('numdays', '', 7),
144 => new lang_string('numdays', '', 6),
120 => new lang_string('numdays', '', 5),
96 => new lang_string('numdays', '', 4),
72 => new lang_string('numdays', '', 3),
48 => new lang_string('numdays', '', 2),
< 24 => new lang_string('numdays', '', 1))));
<
> 24 => new lang_string('numdays', '', 1),
> ]
> ));
$temp->add(new admin_setting_configcheckbox('disablegradehistory', new lang_string('disablegradehistory', 'grades'),
new lang_string('disablegradehistory_help', 'grades'), 0));
$temp->add(new admin_setting_configselect('gradehistorylifetime', new lang_string('gradehistorylifetime', 'grades'),
< new lang_string('gradehistorylifetime_help', 'grades'), 0, array(0 => new lang_string('neverdeletehistory', 'grades'),
> new lang_string('gradehistorylifetime_help', 'grades'), 0,
> [
> 0 => new lang_string('neverdeletehistory', 'grades'),
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),
< 30 => new lang_string('numdays', '', 30))));
> 30 => new lang_string('numdays', '', 30),
> ]
> ));
$temp->add(new admin_setting_configselect('tempdatafoldercleanup', new lang_string('tempdatafoldercleanup', 'admin'),
< new lang_string('configtempdatafoldercleanup', 'admin'), 168, array(
> new lang_string('configtempdatafoldercleanup', 'admin'), 168,
> [
1 => new lang_string('numhours', '', 1),
3 => new lang_string('numhours', '', 3),
6 => new lang_string('numhours', '', 6),
9 => new lang_string('numhours', '', 9),
12 => new lang_string('numhours', '', 12),
18 => new lang_string('numhours', '', 18),
24 => new lang_string('numhours', '', 24),
48 => new lang_string('numdays', '', 2),
168 => new lang_string('numdays', '', 7),
< )));
> ]
> ));
$ADMIN->add('server', $temp);
$temp->add(new admin_setting_configduration('filescleanupperiod',
new lang_string('filescleanupperiod', 'admin'),
new lang_string('filescleanupperiod_help', 'admin'),
86400));
< $ADMIN->add('server', new admin_externalpage('environment', new lang_string('environment','admin'), "$CFG->wwwroot/$CFG->admin/environment.php"));
< $ADMIN->add('server', new admin_externalpage('phpinfo', new lang_string('phpinfo'), "$CFG->wwwroot/$CFG->admin/phpinfo.php"));
< $ADMIN->add('server', new admin_externalpage('testoutgoingmailconf', new lang_string('testoutgoingmailconf', 'admin'),
< new moodle_url("$CFG->wwwroot/$CFG->admin/testoutgoingmailconf.php"), 'moodle/site:config', true));
> // Environment.
> $ADMIN->add('server', new admin_externalpage('environment', new lang_string('environment', 'admin'),
> "{$CFG->wwwroot}/{$CFG->admin}/environment.php"));
>
> // PHP info.
> $ADMIN->add('server', new admin_externalpage('phpinfo', new lang_string('phpinfo'),
> "{$CFG->wwwroot}/{$CFG->admin}/phpinfo.php"));
> // Test outgoing mail configuration (hidden, accessed via direct link from the settings page).
> $ADMIN->add('server', new admin_externalpage('testoutgoingmailconf', new lang_string('testoutgoingmailconf', 'admin'),
// "performance" settingpage
> new moodle_url('/admin/testoutgoingmailconf.php'), 'moodle/site:config', true));
< // "performance" settingpage
> // Performance.
// Memory limit options for large administration tasks.
< $memoryoptions = array(
> $memoryoptions = [
'64M' => '64M',
'128M' => '128M',
'256M' => '256M',
'512M' => '512M',
'1024M' => '1024M',
< '2048M' => '2048M');
> '2048M' => '2048M',
> ];
// Allow larger memory usage for 64-bit sites only.
if (PHP_INT_SIZE === 8) {
$memoryoptions['3072M'] = '3072M';
$memoryoptions['4096M'] = '4096M';
}
$temp->add(new admin_setting_configselect('extramemorylimit', new lang_string('extramemorylimit', 'admin'),
< new lang_string('configextramemorylimit', 'admin'), '512M',
< $memoryoptions));
> new lang_string('configextramemorylimit', 'admin'), '512M', $memoryoptions));
>
$temp->add(new admin_setting_configtext('maxtimelimit', new lang_string('maxtimelimit', 'admin'),
new lang_string('maxtimelimit_desc', 'admin'), 0, PARAM_INT));
$temp->add(new admin_setting_configtext('curlcache', new lang_string('curlcache', 'admin'),
new lang_string('configcurlcache', 'admin'), 120, PARAM_INT));
$temp->add(new admin_setting_configtext('curltimeoutkbitrate', new lang_string('curltimeoutkbitrate', 'admin'),
new lang_string('curltimeoutkbitrate_help', 'admin'), 56, PARAM_INT));
$ADMIN->add('server', $temp);
<
> // Tasks.
$ADMIN->add('server', new admin_category('taskconfig', new lang_string('taskadmintitle', 'admin')));
>
$temp = new admin_settingpage('taskprocessing', new lang_string('taskprocessing','admin'));
> // Task processing.
$temp->add(
>
new admin_setting_configtext(
> $setting = new admin_setting_configcheckbox(
'task_scheduled_concurrency_limit',
> 'cron_enabled',
new lang_string('task_scheduled_concurrency_limit', 'admin'),
> new lang_string('cron_enabled', 'admin'),
new lang_string('task_scheduled_concurrency_limit_desc', 'admin'),
> new lang_string('cron_enabled_desc', 'admin'),
3,
> 1
PARAM_INT
> );
)
> $setting->set_updatedcallback('theme_reset_static_caches');
);
> $temp->add($setting);
>
$temp->add(
new admin_setting_configduration(
'task_scheduled_max_runtime',
new lang_string('task_scheduled_max_runtime', 'admin'),
new lang_string('task_scheduled_max_runtime_desc', 'admin'),
30 * MINSECS
)
);
$temp->add(
new admin_setting_configtext(
'task_adhoc_concurrency_limit',
new lang_string('task_adhoc_concurrency_limit', 'admin'),
new lang_string('task_adhoc_concurrency_limit_desc', 'admin'),
3,
PARAM_INT
)
);
$temp->add(
new admin_setting_configduration(
'task_adhoc_max_runtime',
new lang_string('task_adhoc_max_runtime', 'admin'),
new lang_string('task_adhoc_max_runtime_desc', 'admin'),
30 * MINSECS
)
);
$ADMIN->add('taskconfig', $temp);
> // Task log configuration.
$temp = new admin_settingpage('tasklogging', new lang_string('tasklogging','admin'));
$temp->add(
new admin_setting_configselect(
'task_logmode',
new lang_string('task_logmode', 'admin'),
new lang_string('task_logmode_desc', 'admin'),
\core\task\logmanager::MODE_ALL,
[
\core\task\logmanager::MODE_ALL => new lang_string('task_logmode_all', 'admin'),
\core\task\logmanager::MODE_FAILONLY => new lang_string('task_logmode_failonly', 'admin'),
\core\task\logmanager::MODE_NONE => new lang_string('task_logmode_none', 'admin'),
]
)
);
$temp->add(
new admin_setting_configcheckbox(
'task_logtostdout',
new lang_string('task_logtostdout', 'admin'),
new lang_string('task_logtostdout_desc', 'admin'),
1
)
);
if (\core\task\logmanager::uses_standard_settings()) {
$temp->add(
new admin_setting_configduration(
'task_logretention',
new \lang_string('task_logretention', 'admin'),
new \lang_string('task_logretention_desc', 'admin'),
28 * DAYSECS
)
);
$temp->add(
new admin_setting_configtext(
'task_logretainruns',
new \lang_string('task_logretainruns', 'admin'),
new \lang_string('task_logretainruns_desc', 'admin'),
20,
PARAM_INT
)
);
}
$ADMIN->add('taskconfig', $temp);
> // Task logs.
if (\core\task\logmanager::uses_standard_settings()) {
$ADMIN->add('taskconfig', new admin_externalpage(
'tasklogs',
new lang_string('tasklogs','admin'),
"{$CFG->wwwroot}/{$CFG->admin}/tasklogs.php"
));
}
< // E-mail settings.
> // Email.
$ADMIN->add('server', new admin_category('email', new lang_string('categoryemail', 'admin')));
> // Outgoing mail configuration.
$temp = new admin_settingpage('outgoingmailconfig', new lang_string('outgoingmailconfig', 'admin'));
$temp->add(new admin_setting_heading('smtpheading', new lang_string('smtp', 'admin'),
new lang_string('smtpdetail', 'admin')));
>
$temp->add(new admin_setting_configtext('smtphosts', new lang_string('smtphosts', 'admin'),
new lang_string('configsmtphosts', 'admin'), '', PARAM_RAW));
< $options = array('' => new lang_string('none', 'admin'), 'ssl' => 'SSL', 'tls' => 'TLS');
>
> $options = [
> '' => new lang_string('none', 'admin'),
> 'ssl' => 'SSL',
> 'tls' => 'TLS',
> ];
>
$temp->add(new admin_setting_configselect('smtpsecure', new lang_string('smtpsecure', 'admin'),
new lang_string('configsmtpsecure', 'admin'), '', $options));
< $authtypeoptions = array('LOGIN' => 'LOGIN', 'PLAIN' => 'PLAIN', 'NTLM' => 'NTLM', 'CRAM-MD5' => 'CRAM-MD5');
>
> $authtypeoptions = [
> 'LOGIN' => 'LOGIN',
> 'PLAIN' => 'PLAIN',
> 'NTLM' => 'NTLM',
> 'CRAM-MD5' => 'CRAM-MD5',
> ];
>
$temp->add(new admin_setting_configselect('smtpauthtype', new lang_string('smtpauthtype', 'admin'),
new lang_string('configsmtpauthtype', 'admin'), 'LOGIN', $authtypeoptions));
>
$temp->add(new admin_setting_configtext('smtpuser', new lang_string('smtpuser', 'admin'),
new lang_string('configsmtpuser', 'admin'), '', PARAM_NOTAGS));
>
$temp->add(new admin_setting_configpasswordunmask('smtppass', new lang_string('smtppass', 'admin'),
new lang_string('configsmtpuser', 'admin'), ''));
>
$temp->add(new admin_setting_configtext('smtpmaxbulk', new lang_string('smtpmaxbulk', 'admin'),
new lang_string('configsmtpmaxbulk', 'admin'), 1, PARAM_INT));
>
$temp->add(new admin_setting_heading('noreplydomainheading', new lang_string('noreplydomain', 'admin'),
new lang_string('noreplydomaindetail', 'admin')));
>
$temp->add(new admin_setting_configtext('noreplyaddress', new lang_string('noreplyaddress', 'admin'),
new lang_string('confignoreplyaddress', 'admin'), 'noreply@' . get_host_from_url($CFG->wwwroot), PARAM_EMAIL));
>
$temp->add(new admin_setting_configtextarea('allowedemaildomains',
new lang_string('allowedemaildomains', 'admin'),
new lang_string('configallowedemaildomains', 'admin'),
''));
>
$url = new moodle_url('/admin/testoutgoingmailconf.php');
> $temp->add(new admin_setting_heading('divertallemailsheading', new lang_string('divertallemails', 'admin'),
$link = html_writer::link($url, get_string('testoutgoingmailconf', 'admin'));
> new lang_string('divertallemailsdetail', 'admin')));
$temp->add(new admin_setting_heading('testoutgoinmailc', new lang_string('testoutgoingmailconf', 'admin'),
> $temp->add(new admin_setting_configtext('divertallemailsto',
new lang_string('testoutgoingmaildetail', 'admin', $link)));
> new lang_string('divertallemailsto', 'admin'),
$temp->add(new admin_setting_heading('emaildoesnotfit', new lang_string('doesnotfit', 'admin'),
> new lang_string('divertallemailsto_desc', 'admin'),
new lang_string('doesnotfitdetail', 'admin')));
> ''));
$charsets = get_list_of_charsets();
> $temp->add(new admin_setting_configtextarea('divertallemailsexcept',
unset($charsets['UTF-8']); // Not needed here.
> new lang_string('divertallemailsexcept', 'admin'),
$options = array();
> new lang_string('divertallemailsexcept_desc', 'admin'),
$options['0'] = 'UTF-8';
> '', PARAM_RAW, '50', '4'));
$options = array_merge($options, $charsets);
>
$temp->add(new admin_setting_configselect('sitemailcharset', new lang_string('sitemailcharset', 'admin'),
> $noreplyaddress = isset($CFG->noreplyaddress) ? $CFG->noreplyaddress : 'noreply@example.com';
new lang_string('configsitemailcharset','admin'), '0', $options));
> $dkimdomain = substr(strrchr($noreplyaddress, "@"), 1);
$temp->add(new admin_setting_configcheckbox('allowusermailcharset', new lang_string('allowusermailcharset', 'admin'),
> $dkimselector = empty($CFG->emaildkimselector) ? '[selector]' : $CFG->emaildkimselector;
new lang_string('configallowusermailcharset', 'admin'), 0));
> $pempath = "\$CFG->dataroot/dkim/{$dkimdomain}/{$dkimselector}.private";
$temp->add(new admin_setting_configcheckbox('allowattachments', new lang_string('allowattachments', 'admin'),
> $temp->add(new admin_setting_heading('emaildkim', new lang_string('emaildkim', 'admin'),
new lang_string('configallowattachments', 'admin'), 1));
> new lang_string('emaildkiminfo', 'admin', ['path' => $pempath, 'docs' => \get_docs_url('Mail_configuration#DKIM')])));
$options = array('LF' => 'LF', 'CRLF' => 'CRLF');
> $temp->add(new admin_setting_configtext('emaildkimselector', new lang_string('emaildkimselector', 'admin'),
$temp->add(new admin_setting_configselect('mailnewline', new lang_string('mailnewline', 'admin'),
> new lang_string('configemaildkimselector', 'admin'), '', PARAM_FILE));
new lang_string('configmailnewline', 'admin'), 'LF', $options));
>
>
$choices = array(new lang_string('never', 'admin'),
>
< unset($charsets['UTF-8']); // Not needed here.
< $options = array();
< $options['0'] = 'UTF-8';
> unset($charsets['UTF-8']);
> $options = [
> '0' => 'UTF-8',
> ];
new lang_string('configemailfromvia', 'admin'), 1, $choices));
>
$temp->add(new admin_setting_configtext('emailsubjectprefix', new lang_string('emailsubjectprefix', 'admin'),
>
< $options = array('LF' => 'LF', 'CRLF' => 'CRLF');
>
> $options = [
> 'LF' => 'LF',
> 'CRLF' => 'CRLF',
> ];
< $choices = array(new lang_string('never', 'admin'),
> $choices = [
> new lang_string('never', 'admin'),
< new lang_string('onlynoreply', 'admin'));
> new lang_string('onlynoreply', 'admin'),
> ];
>
// "update notifications" settingpage
> $temp->add(new admin_setting_configtextarea('emailheaders', new lang_string('emailheaders', 'admin'),
if (empty($CFG->disableupdatenotifications)) {
> new lang_string('configemailheaders', 'admin'), '', PARAM_RAW, '50', '3'));
$temp = new admin_settingpage('updatenotifications', new lang_string('updatenotifications', 'core_admin'));
>
< // "update notifications" settingpage
> // Update notifications.
new lang_string('updateautocheck_desc', 'core_admin'), 1));
$temp->add(new admin_setting_configselect('updateminmaturity', new lang_string('updateminmaturity', 'core_admin'),
new lang_string('updateminmaturity_desc', 'core_admin'), MATURITY_STABLE,
< array(
> [
MATURITY_ALPHA => new lang_string('maturity'.MATURITY_ALPHA, 'core_admin'),
MATURITY_BETA => new lang_string('maturity'.MATURITY_BETA, 'core_admin'),
MATURITY_RC => new lang_string('maturity'.MATURITY_RC, 'core_admin'),
MATURITY_STABLE => new lang_string('maturity'.MATURITY_STABLE, 'core_admin'),
< )));
> ]
> ));
$temp->add(new admin_setting_configcheckbox('updatenotifybuilds', new lang_string('updatenotifybuilds', 'core_admin'),
new lang_string('updatenotifybuilds_desc', 'core_admin'), 0));
$ADMIN->add('server', $temp);
}
<
< } // end of speedup
> }