Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/monara/public_html/test.athavaneng.com/themes.php on line 99
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 226
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 227
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 228
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 229
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 230
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 231
.
/**
* Recycle bin settings.
*
* @package tool_recyclebin
* @copyright 2015 University of Kent
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
global $PAGE;
if ($hassiteconfig) {
$settings = new admin_settingpage('tool_recyclebin', get_string('pluginname', 'tool_recyclebin'));
$ADMIN->add('tools', $settings);
$settings->add(new admin_setting_configcheckbox(
'tool_recyclebin/coursebinenable',
new lang_string('coursebinenable', 'tool_recyclebin'),
'',
1
));
$settings->add(new admin_setting_configduration(
'tool_recyclebin/coursebinexpiry',
new lang_string('coursebinexpiry', 'tool_recyclebin'),
new lang_string('coursebinexpiry_desc', 'tool_recyclebin'),
WEEKSECS
));
$settings->add(new admin_setting_configcheckbox(
'tool_recyclebin/categorybinenable',
new lang_string('categorybinenable', 'tool_recyclebin'),
'',
1
));
$settings->add(new admin_setting_configduration(
'tool_recyclebin/categorybinexpiry',
new lang_string('categorybinexpiry', 'tool_recyclebin'),
new lang_string('categorybinexpiry_desc', 'tool_recyclebin'),
WEEKSECS
));
$settings->add(new admin_setting_configcheckbox(
'tool_recyclebin/autohide',
new lang_string('autohide', 'tool_recyclebin'),
new lang_string('autohide_desc', 'tool_recyclebin'),
1
));
}