芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/admin/tool/log/settings.php
. /** * Logging settings. * * @package tool_log * @copyright 2013 Petr Skoda {@link http://skodak.org/} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); if ($hassiteconfig) { $privacysettings = $ADMIN->locate('privacysettings'); if ($ADMIN->fulltree) { $privacysettings->add(new admin_setting_configcheckbox('tool_log/exportlog', new lang_string('exportlog', 'tool_log'), new lang_string('exportlogdetail', 'tool_log'), 1) ); } $ADMIN->add('modules', new admin_category('logging', new lang_string('logging', 'tool_log'))); $temp = new admin_settingpage('managelogging', new lang_string('managelogging', 'tool_log')); $temp->add(new tool_log_setting_managestores()); $ADMIN->add('logging', $temp); foreach (core_plugin_manager::instance()->get_plugins_of_type('logstore') as $plugin) { /** @var \tool_log\plugininfo\logstore $plugin */ $plugin->load_settings($ADMIN, 'logging', $hassiteconfig); } }