2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * Functions and classes used during installation, upgrades and for admin settings.
20 * ADMIN SETTINGS TREE INTRODUCTION
22 * This file performs the following tasks:
23 * -it defines the necessary objects and interfaces to build the Moodle
25 * -it defines the admin_externalpage_setup()
27 * ADMIN_SETTING OBJECTS
29 * Moodle settings are represented by objects that inherit from the admin_setting
30 * class. These objects encapsulate how to read a setting, how to write a new value
31 * to a setting, and how to appropriately display the HTML to modify the setting.
33 * ADMIN_SETTINGPAGE OBJECTS
35 * The admin_setting objects are then grouped into admin_settingpages. The latter
36 * appear in the Moodle admin tree block. All interaction with admin_settingpage
37 * objects is handled by the admin/settings.php file.
39 * ADMIN_EXTERNALPAGE OBJECTS
41 * There are some settings in Moodle that are too complex to (efficiently) handle
42 * with admin_settingpages. (Consider, for example, user management and displaying
43 * lists of users.) In this case, we use the admin_externalpage object. This object
44 * places a link to an external PHP file in the admin tree block.
46 * If you're using an admin_externalpage object for some settings, you can take
47 * advantage of the admin_externalpage_* functions. For example, suppose you wanted
48 * to add a foo.php file into admin. First off, you add the following line to
49 * admin/settings/first.php (at the end of the file) or to some other file in
52 * $ADMIN->add('userinterface', new admin_externalpage('foo', get_string('foo'),
53 * $CFG->wwwdir . '/' . '$CFG->admin . '/foo.php', 'some_role_permission'));
56 * Next, in foo.php, your file structure would resemble the following:
58 * require(dirname(dirname(dirname(__FILE__))).'/config.php');
59 * require_once($CFG->libdir.'/adminlib.php');
60 * admin_externalpage_setup('foo');
61 * // functionality like processing form submissions goes here
62 * echo $OUTPUT->header();
63 * // your HTML goes here
64 * echo $OUTPUT->footer();
67 * The admin_externalpage_setup() function call ensures the user is logged in,
68 * and makes sure that they have the proper role permission to access the page.
69 * It also configures all $PAGE properties needed for navigation.
71 * ADMIN_CATEGORY OBJECTS
73 * Above and beyond all this, we have admin_category objects. These objects
74 * appear as folders in the admin tree block. They contain admin_settingpage's,
75 * admin_externalpage's, and other admin_category's.
79 * admin_settingpage's, admin_externalpage's, and admin_category's all inherit
80 * from part_of_admin_tree (a pseudointerface). This interface insists that
81 * a class has a check_access method for access permissions, a locate method
82 * used to find a specific node in the admin tree and find parent path.
84 * admin_category's inherit from parentable_part_of_admin_tree. This pseudo-
85 * interface ensures that the class implements a recursive add function which
86 * accepts a part_of_admin_tree object and searches for the proper place to
87 * put it. parentable_part_of_admin_tree implies part_of_admin_tree.
89 * Please note that the $this->name field of any part_of_admin_tree must be
90 * UNIQUE throughout the ENTIRE admin tree.
92 * The $this->name field of an admin_setting object (which is *not* part_of_
93 * admin_tree) must be unique on the respective admin_settingpage where it is
96 * Original author: Vincenzo K. Marcovecchio
97 * Maintainer: Petr Skoda
101 * @copyright 1999 onwards Martin Dougiamas http://dougiamas.com
102 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
105 defined('MOODLE_INTERNAL') ||
die();
108 require_once($CFG->libdir
.'/ddllib.php');
109 require_once($CFG->libdir
.'/xmlize.php');
110 require_once($CFG->libdir
.'/messagelib.php');
112 define('INSECURE_DATAROOT_WARNING', 1);
113 define('INSECURE_DATAROOT_ERROR', 2);
116 * Automatically clean-up all plugin data and remove the plugin DB tables
118 * NOTE: do not call directly, use new /admin/plugins.php?uninstall=component instead!
120 * @param string $type The plugin type, eg. 'mod', 'qtype', 'workshopgrading' etc.
121 * @param string $name The plugin name, eg. 'forum', 'multichoice', 'accumulative' etc.
122 * @uses global $OUTPUT to produce notices and other messages
125 function uninstall_plugin($type, $name) {
126 global $CFG, $DB, $OUTPUT;
128 // This may take a long time.
129 core_php_time_limit
::raise();
131 // Recursively uninstall all subplugins first.
132 $subplugintypes = core_component
::get_plugin_types_with_subplugins();
133 if (isset($subplugintypes[$type])) {
134 $base = core_component
::get_plugin_directory($type, $name);
135 if (file_exists("$base/db/subplugins.php")) {
136 $subplugins = array();
137 include("$base/db/subplugins.php");
138 foreach ($subplugins as $subplugintype=>$dir) {
139 $instances = core_component
::get_plugin_list($subplugintype);
140 foreach ($instances as $subpluginname => $notusedpluginpath) {
141 uninstall_plugin($subplugintype, $subpluginname);
148 $component = $type . '_' . $name; // eg. 'qtype_multichoice' or 'workshopgrading_accumulative' or 'mod_forum'
150 if ($type === 'mod') {
151 $pluginname = $name; // eg. 'forum'
152 if (get_string_manager()->string_exists('modulename', $component)) {
153 $strpluginname = get_string('modulename', $component);
155 $strpluginname = $component;
159 $pluginname = $component;
160 if (get_string_manager()->string_exists('pluginname', $component)) {
161 $strpluginname = get_string('pluginname', $component);
163 $strpluginname = $component;
167 echo $OUTPUT->heading($pluginname);
169 // Delete all tag instances associated with this plugin.
170 require_once($CFG->dirroot
. '/tag/lib.php');
171 tag_delete_instances($component);
173 // Custom plugin uninstall.
174 $plugindirectory = core_component
::get_plugin_directory($type, $name);
175 $uninstalllib = $plugindirectory . '/db/uninstall.php';
176 if (file_exists($uninstalllib)) {
177 require_once($uninstalllib);
178 $uninstallfunction = 'xmldb_' . $pluginname . '_uninstall'; // eg. 'xmldb_workshop_uninstall()'
179 if (function_exists($uninstallfunction)) {
180 // Do not verify result, let plugin complain if necessary.
181 $uninstallfunction();
185 // Specific plugin type cleanup.
186 $plugininfo = core_plugin_manager
::instance()->get_plugin_info($component);
188 $plugininfo->uninstall_cleanup();
189 core_plugin_manager
::reset_caches();
193 // perform clean-up task common for all the plugin/subplugin types
195 //delete the web service functions and pre-built services
196 require_once($CFG->dirroot
.'/lib/externallib.php');
197 external_delete_descriptions($component);
199 // delete calendar events
200 $DB->delete_records('event', array('modulename' => $pluginname));
202 // Delete scheduled tasks.
203 $DB->delete_records('task_scheduled', array('component' => $pluginname));
205 // Delete Inbound Message datakeys.
206 $DB->delete_records_select('messageinbound_datakeys',
207 'handler IN (SELECT id FROM {messageinbound_handlers} WHERE component = ?)', array($pluginname));
209 // Delete Inbound Message handlers.
210 $DB->delete_records('messageinbound_handlers', array('component' => $pluginname));
212 // delete all the logs
213 $DB->delete_records('log', array('module' => $pluginname));
215 // delete log_display information
216 $DB->delete_records('log_display', array('component' => $component));
218 // delete the module configuration records
219 unset_all_config_for_plugin($component);
220 if ($type === 'mod') {
221 unset_all_config_for_plugin($pluginname);
224 // delete message provider
225 message_provider_uninstall($component);
227 // delete the plugin tables
228 $xmldbfilepath = $plugindirectory . '/db/install.xml';
229 drop_plugin_tables($component, $xmldbfilepath, false);
230 if ($type === 'mod' or $type === 'block') {
231 // non-frankenstyle table prefixes
232 drop_plugin_tables($name, $xmldbfilepath, false);
235 // delete the capabilities that were defined by this module
236 capabilities_cleanup($component);
238 // remove event handlers and dequeue pending events
239 events_uninstall($component);
241 // Delete all remaining files in the filepool owned by the component.
242 $fs = get_file_storage();
243 $fs->delete_component_files($component);
245 // Finally purge all caches.
248 // Invalidate the hash used for upgrade detections.
249 set_config('allversionshash', '');
251 echo $OUTPUT->notification(get_string('success'), 'notifysuccess');
255 * Returns the version of installed component
257 * @param string $component component name
258 * @param string $source either 'disk' or 'installed' - where to get the version information from
259 * @return string|bool version number or false if the component is not found
261 function get_component_version($component, $source='installed') {
264 list($type, $name) = core_component
::normalize_component($component);
266 // moodle core or a core subsystem
267 if ($type === 'core') {
268 if ($source === 'installed') {
269 if (empty($CFG->version
)) {
272 return $CFG->version
;
275 if (!is_readable($CFG->dirroot
.'/version.php')) {
278 $version = null; //initialize variable for IDEs
279 include($CFG->dirroot
.'/version.php');
286 if ($type === 'mod') {
287 if ($source === 'installed') {
288 if ($CFG->version
< 2013092001.02) {
289 return $DB->get_field('modules', 'version', array('name'=>$name));
291 return get_config('mod_'.$name, 'version');
295 $mods = core_component
::get_plugin_list('mod');
296 if (empty($mods[$name]) or !is_readable($mods[$name].'/version.php')) {
299 $plugin = new stdClass();
300 $plugin->version
= null;
302 include($mods[$name].'/version.php');
303 return $plugin->version
;
309 if ($type === 'block') {
310 if ($source === 'installed') {
311 if ($CFG->version
< 2013092001.02) {
312 return $DB->get_field('block', 'version', array('name'=>$name));
314 return get_config('block_'.$name, 'version');
317 $blocks = core_component
::get_plugin_list('block');
318 if (empty($blocks[$name]) or !is_readable($blocks[$name].'/version.php')) {
321 $plugin = new stdclass();
322 include($blocks[$name].'/version.php');
323 return $plugin->version
;
328 // all other plugin types
329 if ($source === 'installed') {
330 return get_config($type.'_'.$name, 'version');
332 $plugins = core_component
::get_plugin_list($type);
333 if (empty($plugins[$name])) {
336 $plugin = new stdclass();
337 include($plugins[$name].'/version.php');
338 return $plugin->version
;
344 * Delete all plugin tables
346 * @param string $name Name of plugin, used as table prefix
347 * @param string $file Path to install.xml file
348 * @param bool $feedback defaults to true
349 * @return bool Always returns true
351 function drop_plugin_tables($name, $file, $feedback=true) {
354 // first try normal delete
355 if (file_exists($file) and $DB->get_manager()->delete_tables_from_xmldb_file($file)) {
359 // then try to find all tables that start with name and are not in any xml file
360 $used_tables = get_used_table_names();
362 $tables = $DB->get_tables();
364 /// Iterate over, fixing id fields as necessary
365 foreach ($tables as $table) {
366 if (in_array($table, $used_tables)) {
370 if (strpos($table, $name) !== 0) {
374 // found orphan table --> delete it
375 if ($DB->get_manager()->table_exists($table)) {
376 $xmldb_table = new xmldb_table($table);
377 $DB->get_manager()->drop_table($xmldb_table);
385 * Returns names of all known tables == tables that moodle knows about.
387 * @return array Array of lowercase table names
389 function get_used_table_names() {
390 $table_names = array();
391 $dbdirs = get_db_directories();
393 foreach ($dbdirs as $dbdir) {
394 $file = $dbdir.'/install.xml';
396 $xmldb_file = new xmldb_file($file);
398 if (!$xmldb_file->fileExists()) {
402 $loaded = $xmldb_file->loadXMLStructure();
403 $structure = $xmldb_file->getStructure();
405 if ($loaded and $tables = $structure->getTables()) {
406 foreach($tables as $table) {
407 $table_names[] = strtolower($table->getName());
416 * Returns list of all directories where we expect install.xml files
417 * @return array Array of paths
419 function get_db_directories() {
424 /// First, the main one (lib/db)
425 $dbdirs[] = $CFG->libdir
.'/db';
427 /// Then, all the ones defined by core_component::get_plugin_types()
428 $plugintypes = core_component
::get_plugin_types();
429 foreach ($plugintypes as $plugintype => $pluginbasedir) {
430 if ($plugins = core_component
::get_plugin_list($plugintype)) {
431 foreach ($plugins as $plugin => $plugindir) {
432 $dbdirs[] = $plugindir.'/db';
441 * Try to obtain or release the cron lock.
442 * @param string $name name of lock
443 * @param int $until timestamp when this lock considered stale, null means remove lock unconditionally
444 * @param bool $ignorecurrent ignore current lock state, usually extend previous lock, defaults to false
445 * @return bool true if lock obtained
447 function set_cron_lock($name, $until, $ignorecurrent=false) {
450 debugging("Tried to get a cron lock for a null fieldname");
454 // remove lock by force == remove from config table
455 if (is_null($until)) {
456 set_config($name, null);
460 if (!$ignorecurrent) {
461 // read value from db - other processes might have changed it
462 $value = $DB->get_field('config', 'value', array('name'=>$name));
464 if ($value and $value > time()) {
470 set_config($name, $until);
475 * Test if and critical warnings are present
478 function admin_critical_warnings_present() {
481 if (!has_capability('moodle/site:config', context_system
::instance())) {
485 if (!isset($SESSION->admin_critical_warning
)) {
486 $SESSION->admin_critical_warning
= 0;
487 if (is_dataroot_insecure(true) === INSECURE_DATAROOT_ERROR
) {
488 $SESSION->admin_critical_warning
= 1;
492 return $SESSION->admin_critical_warning
;
496 * Detects if float supports at least 10 decimal digits
498 * Detects if float supports at least 10 decimal digits
499 * and also if float-->string conversion works as expected.
501 * @return bool true if problem found
503 function is_float_problem() {
504 $num1 = 2009010200.01;
505 $num2 = 2009010200.02;
507 return ((string)$num1 === (string)$num2 or $num1 === $num2 or $num2 <= (string)$num1);
511 * Try to verify that dataroot is not accessible from web.
513 * Try to verify that dataroot is not accessible from web.
514 * It is not 100% correct but might help to reduce number of vulnerable sites.
515 * Protection from httpd.conf and .htaccess is not detected properly.
517 * @uses INSECURE_DATAROOT_WARNING
518 * @uses INSECURE_DATAROOT_ERROR
519 * @param bool $fetchtest try to test public access by fetching file, default false
520 * @return mixed empty means secure, INSECURE_DATAROOT_ERROR found a critical problem, INSECURE_DATAROOT_WARNING might be problematic
522 function is_dataroot_insecure($fetchtest=false) {
525 $siteroot = str_replace('\\', '/', strrev($CFG->dirroot
.'/')); // win32 backslash workaround
527 $rp = preg_replace('|https?://[^/]+|i', '', $CFG->wwwroot
, 1);
528 $rp = strrev(trim($rp, '/'));
529 $rp = explode('/', $rp);
531 if (strpos($siteroot, '/'.$r.'/') === 0) {
532 $siteroot = substr($siteroot, strlen($r)+
1); // moodle web in subdirectory
534 break; // probably alias root
538 $siteroot = strrev($siteroot);
539 $dataroot = str_replace('\\', '/', $CFG->dataroot
.'/');
541 if (strpos($dataroot, $siteroot) !== 0) {
546 return INSECURE_DATAROOT_WARNING
;
549 // now try all methods to fetch a test file using http protocol
551 $httpdocroot = str_replace('\\', '/', strrev($CFG->dirroot
.'/'));
552 preg_match('|(https?://[^/]+)|i', $CFG->wwwroot
, $matches);
553 $httpdocroot = $matches[1];
554 $datarooturl = $httpdocroot.'/'. substr($dataroot, strlen($siteroot));
555 make_upload_directory('diag');
556 $testfile = $CFG->dataroot
.'/diag/public.txt';
557 if (!file_exists($testfile)) {
558 file_put_contents($testfile, 'test file, do not delete');
559 @chmod
($testfile, $CFG->filepermissions
);
561 $teststr = trim(file_get_contents($testfile));
562 if (empty($teststr)) {
564 return INSECURE_DATAROOT_WARNING
;
567 $testurl = $datarooturl.'/diag/public.txt';
568 if (extension_loaded('curl') and
569 !(stripos(ini_get('disable_functions'), 'curl_init') !== FALSE) and
570 !(stripos(ini_get('disable_functions'), 'curl_setop') !== FALSE) and
571 ($ch = @curl_init
($testurl)) !== false) {
572 curl_setopt($ch, CURLOPT_RETURNTRANSFER
, true);
573 curl_setopt($ch, CURLOPT_HEADER
, false);
574 $data = curl_exec($ch);
575 if (!curl_errno($ch)) {
577 if ($data === $teststr) {
579 return INSECURE_DATAROOT_ERROR
;
585 if ($data = @file_get_contents
($testurl)) {
587 if ($data === $teststr) {
588 return INSECURE_DATAROOT_ERROR
;
592 preg_match('|https?://([^/]+)|i', $testurl, $matches);
593 $sitename = $matches[1];
595 if ($fp = @fsockopen
($sitename, 80, $error)) {
596 preg_match('|https?://[^/]+(.*)|i', $testurl, $matches);
597 $localurl = $matches[1];
598 $out = "GET $localurl HTTP/1.1\r\n";
599 $out .= "Host: $sitename\r\n";
600 $out .= "Connection: Close\r\n\r\n";
606 $data .= fgets($fp, 1024);
607 } else if (@fgets
($fp, 1024) === "\r\n") {
613 if ($data === $teststr) {
614 return INSECURE_DATAROOT_ERROR
;
618 return INSECURE_DATAROOT_WARNING
;
622 * Enables CLI maintenance mode by creating new dataroot/climaintenance.html file.
624 function enable_cli_maintenance_mode() {
627 if (file_exists("$CFG->dataroot/climaintenance.html")) {
628 unlink("$CFG->dataroot/climaintenance.html");
631 if (isset($CFG->maintenance_message
) and !html_is_blank($CFG->maintenance_message
)) {
632 $data = $CFG->maintenance_message
;
633 $data = bootstrap_renderer
::early_error_content($data, null, null, null);
634 $data = bootstrap_renderer
::plain_page(get_string('sitemaintenance', 'admin'), $data);
636 } else if (file_exists("$CFG->dataroot/climaintenance.template.html")) {
637 $data = file_get_contents("$CFG->dataroot/climaintenance.template.html");
640 $data = get_string('sitemaintenance', 'admin');
641 $data = bootstrap_renderer
::early_error_content($data, null, null, null);
642 $data = bootstrap_renderer
::plain_page(get_string('sitemaintenance', 'admin'), $data);
645 file_put_contents("$CFG->dataroot/climaintenance.html", $data);
646 chmod("$CFG->dataroot/climaintenance.html", $CFG->filepermissions
);
649 /// CLASS DEFINITIONS /////////////////////////////////////////////////////////
653 * Interface for anything appearing in the admin tree
655 * The interface that is implemented by anything that appears in the admin tree
656 * block. It forces inheriting classes to define a method for checking user permissions
657 * and methods for finding something in the admin tree.
659 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
661 interface part_of_admin_tree
{
664 * Finds a named part_of_admin_tree.
666 * Used to find a part_of_admin_tree. If a class only inherits part_of_admin_tree
667 * and not parentable_part_of_admin_tree, then this function should only check if
668 * $this->name matches $name. If it does, it should return a reference to $this,
669 * otherwise, it should return a reference to NULL.
671 * If a class inherits parentable_part_of_admin_tree, this method should be called
672 * recursively on all child objects (assuming, of course, the parent object's name
673 * doesn't match the search criterion).
675 * @param string $name The internal name of the part_of_admin_tree we're searching for.
676 * @return mixed An object reference or a NULL reference.
678 public function locate($name);
681 * Removes named part_of_admin_tree.
683 * @param string $name The internal name of the part_of_admin_tree we want to remove.
684 * @return bool success.
686 public function prune($name);
690 * @param string $query
691 * @return mixed array-object structure of found settings and pages
693 public function search($query);
696 * Verifies current user's access to this part_of_admin_tree.
698 * Used to check if the current user has access to this part of the admin tree or
699 * not. If a class only inherits part_of_admin_tree and not parentable_part_of_admin_tree,
700 * then this method is usually just a call to has_capability() in the site context.
702 * If a class inherits parentable_part_of_admin_tree, this method should return the
703 * logical OR of the return of check_access() on all child objects.
705 * @return bool True if the user has access, false if she doesn't.
707 public function check_access();
710 * Mostly useful for removing of some parts of the tree in admin tree block.
712 * @return True is hidden from normal list view
714 public function is_hidden();
717 * Show we display Save button at the page bottom?
720 public function show_save();
725 * Interface implemented by any part_of_admin_tree that has children.
727 * The interface implemented by any part_of_admin_tree that can be a parent
728 * to other part_of_admin_tree's. (For now, this only includes admin_category.) Apart
729 * from ensuring part_of_admin_tree compliancy, it also ensures inheriting methods
730 * include an add method for adding other part_of_admin_tree objects as children.
732 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
734 interface parentable_part_of_admin_tree
extends part_of_admin_tree
{
737 * Adds a part_of_admin_tree object to the admin tree.
739 * Used to add a part_of_admin_tree object to this object or a child of this
740 * object. $something should only be added if $destinationname matches
741 * $this->name. If it doesn't, add should be called on child objects that are
742 * also parentable_part_of_admin_tree's.
744 * $something should be appended as the last child in the $destinationname. If the
745 * $beforesibling is specified, $something should be prepended to it. If the given
746 * sibling is not found, $something should be appended to the end of $destinationname
747 * and a developer debugging message should be displayed.
749 * @param string $destinationname The internal name of the new parent for $something.
750 * @param part_of_admin_tree $something The object to be added.
751 * @return bool True on success, false on failure.
753 public function add($destinationname, $something, $beforesibling = null);
759 * The object used to represent folders (a.k.a. categories) in the admin tree block.
761 * Each admin_category object contains a number of part_of_admin_tree objects.
763 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
765 class admin_category
implements parentable_part_of_admin_tree
{
767 /** @var part_of_admin_tree[] An array of part_of_admin_tree objects that are this object's children */
769 /** @var string An internal name for this category. Must be unique amongst ALL part_of_admin_tree objects */
771 /** @var string The displayed name for this category. Usually obtained through get_string() */
773 /** @var bool Should this category be hidden in admin tree block? */
775 /** @var mixed Either a string or an array or strings */
777 /** @var mixed Either a string or an array or strings */
780 /** @var array fast lookup category cache, all categories of one tree point to one cache */
781 protected $category_cache;
783 /** @var bool If set to true children will be sorted when calling {@link admin_category::get_children()} */
784 protected $sort = false;
785 /** @var bool If set to true children will be sorted in ascending order. */
786 protected $sortasc = true;
787 /** @var bool If set to true sub categories and pages will be split and then sorted.. */
788 protected $sortsplit = true;
789 /** @var bool $sorted True if the children have been sorted and don't need resorting */
790 protected $sorted = false;
793 * Constructor for an empty admin category
795 * @param string $name The internal name for this category. Must be unique amongst ALL part_of_admin_tree objects
796 * @param string $visiblename The displayed named for this category. Usually obtained through get_string()
797 * @param bool $hidden hide category in admin tree block, defaults to false
799 public function __construct($name, $visiblename, $hidden=false) {
800 $this->children
= array();
802 $this->visiblename
= $visiblename;
803 $this->hidden
= $hidden;
807 * Returns a reference to the part_of_admin_tree object with internal name $name.
809 * @param string $name The internal name of the object we want.
810 * @param bool $findpath initialize path and visiblepath arrays
811 * @return mixed A reference to the object with internal name $name if found, otherwise a reference to NULL.
814 public function locate($name, $findpath=false) {
815 if (!isset($this->category_cache
[$this->name
])) {
816 // somebody much have purged the cache
817 $this->category_cache
[$this->name
] = $this;
820 if ($this->name
== $name) {
822 $this->visiblepath
[] = $this->visiblename
;
823 $this->path
[] = $this->name
;
828 // quick category lookup
829 if (!$findpath and isset($this->category_cache
[$name])) {
830 return $this->category_cache
[$name];
834 foreach($this->children
as $childid=>$unused) {
835 if ($return = $this->children
[$childid]->locate($name, $findpath)) {
840 if (!is_null($return) and $findpath) {
841 $return->visiblepath
[] = $this->visiblename
;
842 $return->path
[] = $this->name
;
851 * @param string query
852 * @return mixed array-object structure of found settings and pages
854 public function search($query) {
856 foreach ($this->get_children() as $child) {
857 $subsearch = $child->search($query);
858 if (!is_array($subsearch)) {
859 debugging('Incorrect search result from '.$child->name
);
862 $result = array_merge($result, $subsearch);
868 * Removes part_of_admin_tree object with internal name $name.
870 * @param string $name The internal name of the object we want to remove.
871 * @return bool success
873 public function prune($name) {
875 if ($this->name
== $name) {
876 return false; //can not remove itself
879 foreach($this->children
as $precedence => $child) {
880 if ($child->name
== $name) {
881 // clear cache and delete self
882 while($this->category_cache
) {
883 // delete the cache, but keep the original array address
884 array_pop($this->category_cache
);
886 unset($this->children
[$precedence]);
888 } else if ($this->children
[$precedence]->prune($name)) {
896 * Adds a part_of_admin_tree to a child or grandchild (or great-grandchild, and so forth) of this object.
898 * By default the new part of the tree is appended as the last child of the parent. You
899 * can specify a sibling node that the new part should be prepended to. If the given
900 * sibling is not found, the part is appended to the end (as it would be by default) and
901 * a developer debugging message is displayed.
903 * @throws coding_exception if the $beforesibling is empty string or is not string at all.
904 * @param string $destinationame The internal name of the immediate parent that we want for $something.
905 * @param mixed $something A part_of_admin_tree or setting instance to be added.
906 * @param string $beforesibling The name of the parent's child the $something should be prepended to.
907 * @return bool True if successfully added, false if $something can not be added.
909 public function add($parentname, $something, $beforesibling = null) {
912 $parent = $this->locate($parentname);
913 if (is_null($parent)) {
914 debugging('parent does not exist!');
918 if ($something instanceof part_of_admin_tree
) {
919 if (!($parent instanceof parentable_part_of_admin_tree
)) {
920 debugging('error - parts of tree can be inserted only into parentable parts');
923 if ($CFG->debugdeveloper
&& !is_null($this->locate($something->name
))) {
924 // The name of the node is already used, simply warn the developer that this should not happen.
925 // It is intentional to check for the debug level before performing the check.
926 debugging('Duplicate admin page name: ' . $something->name
, DEBUG_DEVELOPER
);
928 if (is_null($beforesibling)) {
929 // Append $something as the parent's last child.
930 $parent->children
[] = $something;
932 if (!is_string($beforesibling) or trim($beforesibling) === '') {
933 throw new coding_exception('Unexpected value of the beforesibling parameter');
935 // Try to find the position of the sibling.
936 $siblingposition = null;
937 foreach ($parent->children
as $childposition => $child) {
938 if ($child->name
=== $beforesibling) {
939 $siblingposition = $childposition;
943 if (is_null($siblingposition)) {
944 debugging('Sibling '.$beforesibling.' not found', DEBUG_DEVELOPER
);
945 $parent->children
[] = $something;
947 $parent->children
= array_merge(
948 array_slice($parent->children
, 0, $siblingposition),
950 array_slice($parent->children
, $siblingposition)
954 if ($something instanceof admin_category
) {
955 if (isset($this->category_cache
[$something->name
])) {
956 debugging('Duplicate admin category name: '.$something->name
);
958 $this->category_cache
[$something->name
] = $something;
959 $something->category_cache
=& $this->category_cache
;
960 foreach ($something->children
as $child) {
961 // just in case somebody already added subcategories
962 if ($child instanceof admin_category
) {
963 if (isset($this->category_cache
[$child->name
])) {
964 debugging('Duplicate admin category name: '.$child->name
);
966 $this->category_cache
[$child->name
] = $child;
967 $child->category_cache
=& $this->category_cache
;
976 debugging('error - can not add this element');
983 * Checks if the user has access to anything in this category.
985 * @return bool True if the user has access to at least one child in this category, false otherwise.
987 public function check_access() {
988 foreach ($this->children
as $child) {
989 if ($child->check_access()) {
997 * Is this category hidden in admin tree block?
999 * @return bool True if hidden
1001 public function is_hidden() {
1002 return $this->hidden
;
1006 * Show we display Save button at the page bottom?
1009 public function show_save() {
1010 foreach ($this->children
as $child) {
1011 if ($child->show_save()) {
1019 * Sets sorting on this category.
1021 * Please note this function doesn't actually do the sorting.
1022 * It can be called anytime.
1023 * Sorting occurs when the user calls get_children.
1024 * Code using the children array directly won't see the sorted results.
1026 * @param bool $sort If set to true children will be sorted, if false they won't be.
1027 * @param bool $asc If true sorting will be ascending, otherwise descending.
1028 * @param bool $split If true we sort pages and sub categories separately.
1030 public function set_sorting($sort, $asc = true, $split = true) {
1031 $this->sort
= (bool)$sort;
1032 $this->sortasc
= (bool)$asc;
1033 $this->sortsplit
= (bool)$split;
1037 * Returns the children associated with this category.
1039 * @return part_of_admin_tree[]
1041 public function get_children() {
1042 // If we should sort and it hasn't already been sorted.
1043 if ($this->sort
&& !$this->sorted
) {
1044 if ($this->sortsplit
) {
1045 $categories = array();
1047 foreach ($this->children
as $child) {
1048 if ($child instanceof admin_category
) {
1049 $categories[] = $child;
1054 core_collator
::asort_objects_by_property($categories, 'visiblename');
1055 core_collator
::asort_objects_by_property($pages, 'visiblename');
1056 if (!$this->sortasc
) {
1057 $categories = array_reverse($categories);
1058 $pages = array_reverse($pages);
1060 $this->children
= array_merge($pages, $categories);
1062 core_collator
::asort_objects_by_property($this->children
, 'visiblename');
1063 if (!$this->sortasc
) {
1064 $this->children
= array_reverse($this->children
);
1067 $this->sorted
= true;
1069 return $this->children
;
1073 * Magically gets a property from this object.
1076 * @return part_of_admin_tree[]
1077 * @throws coding_exception
1079 public function __get($property) {
1080 if ($property === 'children') {
1081 return $this->get_children();
1083 throw new coding_exception('Invalid property requested.');
1087 * Magically sets a property against this object.
1089 * @param string $property
1090 * @param mixed $value
1091 * @throws coding_exception
1093 public function __set($property, $value) {
1094 if ($property === 'children') {
1095 $this->sorted
= false;
1096 $this->children
= $value;
1098 throw new coding_exception('Invalid property requested.');
1103 * Checks if an inaccessible property is set.
1105 * @param string $property
1107 * @throws coding_exception
1109 public function __isset($property) {
1110 if ($property === 'children') {
1111 return isset($this->children
);
1113 throw new coding_exception('Invalid property requested.');
1119 * Root of admin settings tree, does not have any parent.
1121 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1123 class admin_root
extends admin_category
{
1124 /** @var array List of errors */
1126 /** @var string search query */
1128 /** @var bool full tree flag - true means all settings required, false only pages required */
1130 /** @var bool flag indicating loaded tree */
1132 /** @var mixed site custom defaults overriding defaults in settings files*/
1133 public $custom_defaults;
1136 * @param bool $fulltree true means all settings required,
1137 * false only pages required
1139 public function __construct($fulltree) {
1142 parent
::__construct('root', get_string('administration'), false);
1143 $this->errors
= array();
1145 $this->fulltree
= $fulltree;
1146 $this->loaded
= false;
1148 $this->category_cache
= array();
1150 // load custom defaults if found
1151 $this->custom_defaults
= null;
1152 $defaultsfile = "$CFG->dirroot/local/defaults.php";
1153 if (is_readable($defaultsfile)) {
1154 $defaults = array();
1155 include($defaultsfile);
1156 if (is_array($defaults) and count($defaults)) {
1157 $this->custom_defaults
= $defaults;
1163 * Empties children array, and sets loaded to false
1165 * @param bool $requirefulltree
1167 public function purge_children($requirefulltree) {
1168 $this->children
= array();
1169 $this->fulltree
= ($requirefulltree ||
$this->fulltree
);
1170 $this->loaded
= false;
1171 //break circular dependencies - this helps PHP 5.2
1172 while($this->category_cache
) {
1173 array_pop($this->category_cache
);
1175 $this->category_cache
= array();
1181 * Links external PHP pages into the admin tree.
1183 * See detailed usage example at the top of this document (adminlib.php)
1185 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1187 class admin_externalpage
implements part_of_admin_tree
{
1189 /** @var string An internal name for this external page. Must be unique amongst ALL part_of_admin_tree objects */
1192 /** @var string The displayed name for this external page. Usually obtained through get_string(). */
1193 public $visiblename;
1195 /** @var string The external URL that we should link to when someone requests this external page. */
1198 /** @var string The role capability/permission a user must have to access this external page. */
1199 public $req_capability;
1201 /** @var object The context in which capability/permission should be checked, default is site context. */
1204 /** @var bool hidden in admin tree block. */
1207 /** @var mixed either string or array of string */
1210 /** @var array list of visible names of page parents */
1211 public $visiblepath;
1214 * Constructor for adding an external page into the admin tree.
1216 * @param string $name The internal name for this external page. Must be unique amongst ALL part_of_admin_tree objects.
1217 * @param string $visiblename The displayed name for this external page. Usually obtained through get_string().
1218 * @param string $url The external URL that we should link to when someone requests this external page.
1219 * @param mixed $req_capability The role capability/permission a user must have to access this external page. Defaults to 'moodle/site:config'.
1220 * @param boolean $hidden Is this external page hidden in admin tree block? Default false.
1221 * @param stdClass $context The context the page relates to. Not sure what happens
1222 * if you specify something other than system or front page. Defaults to system.
1224 public function __construct($name, $visiblename, $url, $req_capability='moodle/site:config', $hidden=false, $context=NULL) {
1225 $this->name
= $name;
1226 $this->visiblename
= $visiblename;
1228 if (is_array($req_capability)) {
1229 $this->req_capability
= $req_capability;
1231 $this->req_capability
= array($req_capability);
1233 $this->hidden
= $hidden;
1234 $this->context
= $context;
1238 * Returns a reference to the part_of_admin_tree object with internal name $name.
1240 * @param string $name The internal name of the object we want.
1241 * @param bool $findpath defaults to false
1242 * @return mixed A reference to the object with internal name $name if found, otherwise a reference to NULL.
1244 public function locate($name, $findpath=false) {
1245 if ($this->name
== $name) {
1247 $this->visiblepath
= array($this->visiblename
);
1248 $this->path
= array($this->name
);
1258 * This function always returns false, required function by interface
1260 * @param string $name
1263 public function prune($name) {
1268 * Search using query
1270 * @param string $query
1271 * @return mixed array-object structure of found settings and pages
1273 public function search($query) {
1275 if (strpos(strtolower($this->name
), $query) !== false) {
1277 } else if (strpos(core_text
::strtolower($this->visiblename
), $query) !== false) {
1281 $result = new stdClass();
1282 $result->page
= $this;
1283 $result->settings
= array();
1284 return array($this->name
=> $result);
1291 * Determines if the current user has access to this external page based on $this->req_capability.
1293 * @return bool True if user has access, false otherwise.
1295 public function check_access() {
1297 $context = empty($this->context
) ? context_system
::instance() : $this->context
;
1298 foreach($this->req_capability
as $cap) {
1299 if (has_capability($cap, $context)) {
1307 * Is this external page hidden in admin tree block?
1309 * @return bool True if hidden
1311 public function is_hidden() {
1312 return $this->hidden
;
1316 * Show we display Save button at the page bottom?
1319 public function show_save() {
1326 * Used to group a number of admin_setting objects into a page and add them to the admin tree.
1328 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1330 class admin_settingpage
implements part_of_admin_tree
{
1332 /** @var string An internal name for this external page. Must be unique amongst ALL part_of_admin_tree objects */
1335 /** @var string The displayed name for this external page. Usually obtained through get_string(). */
1336 public $visiblename;
1338 /** @var mixed An array of admin_setting objects that are part of this setting page. */
1341 /** @var string The role capability/permission a user must have to access this external page. */
1342 public $req_capability;
1344 /** @var object The context in which capability/permission should be checked, default is site context. */
1347 /** @var bool hidden in admin tree block. */
1350 /** @var mixed string of paths or array of strings of paths */
1353 /** @var array list of visible names of page parents */
1354 public $visiblepath;
1357 * see admin_settingpage for details of this function
1359 * @param string $name The internal name for this external page. Must be unique amongst ALL part_of_admin_tree objects.
1360 * @param string $visiblename The displayed name for this external page. Usually obtained through get_string().
1361 * @param mixed $req_capability The role capability/permission a user must have to access this external page. Defaults to 'moodle/site:config'.
1362 * @param boolean $hidden Is this external page hidden in admin tree block? Default false.
1363 * @param stdClass $context The context the page relates to. Not sure what happens
1364 * if you specify something other than system or front page. Defaults to system.
1366 public function __construct($name, $visiblename, $req_capability='moodle/site:config', $hidden=false, $context=NULL) {
1367 $this->settings
= new stdClass();
1368 $this->name
= $name;
1369 $this->visiblename
= $visiblename;
1370 if (is_array($req_capability)) {
1371 $this->req_capability
= $req_capability;
1373 $this->req_capability
= array($req_capability);
1375 $this->hidden
= $hidden;
1376 $this->context
= $context;
1380 * see admin_category
1382 * @param string $name
1383 * @param bool $findpath
1384 * @return mixed Object (this) if name == this->name, else returns null
1386 public function locate($name, $findpath=false) {
1387 if ($this->name
== $name) {
1389 $this->visiblepath
= array($this->visiblename
);
1390 $this->path
= array($this->name
);
1400 * Search string in settings page.
1402 * @param string $query
1405 public function search($query) {
1408 foreach ($this->settings
as $setting) {
1409 if ($setting->is_related($query)) {
1410 $found[] = $setting;
1415 $result = new stdClass();
1416 $result->page
= $this;
1417 $result->settings
= $found;
1418 return array($this->name
=> $result);
1422 if (strpos(strtolower($this->name
), $query) !== false) {
1424 } else if (strpos(core_text
::strtolower($this->visiblename
), $query) !== false) {
1428 $result = new stdClass();
1429 $result->page
= $this;
1430 $result->settings
= array();
1431 return array($this->name
=> $result);
1438 * This function always returns false, required by interface
1440 * @param string $name
1441 * @return bool Always false
1443 public function prune($name) {
1448 * adds an admin_setting to this admin_settingpage
1450 * not the same as add for admin_category. adds an admin_setting to this admin_settingpage. settings appear (on the settingpage) in the order in which they're added
1451 * n.b. each admin_setting in an admin_settingpage must have a unique internal name
1453 * @param object $setting is the admin_setting object you want to add
1454 * @return bool true if successful, false if not
1456 public function add($setting) {
1457 if (!($setting instanceof admin_setting
)) {
1458 debugging('error - not a setting instance');
1462 $this->settings
->{$setting->name
} = $setting;
1467 * see admin_externalpage
1469 * @return bool Returns true for yes false for no
1471 public function check_access() {
1473 $context = empty($this->context
) ? context_system
::instance() : $this->context
;
1474 foreach($this->req_capability
as $cap) {
1475 if (has_capability($cap, $context)) {
1483 * outputs this page as html in a table (suitable for inclusion in an admin pagetype)
1484 * @return string Returns an XHTML string
1486 public function output_html() {
1487 $adminroot = admin_get_root();
1488 $return = '<fieldset>'."\n".'<div class="clearer"><!-- --></div>'."\n";
1489 foreach($this->settings
as $setting) {
1490 $fullname = $setting->get_full_name();
1491 if (array_key_exists($fullname, $adminroot->errors
)) {
1492 $data = $adminroot->errors
[$fullname]->data
;
1494 $data = $setting->get_setting();
1495 // do not use defaults if settings not available - upgrade settings handles the defaults!
1497 $return .= $setting->output_html($data);
1499 $return .= '</fieldset>';
1504 * Is this settings page hidden in admin tree block?
1506 * @return bool True if hidden
1508 public function is_hidden() {
1509 return $this->hidden
;
1513 * Show we display Save button at the page bottom?
1516 public function show_save() {
1517 foreach($this->settings
as $setting) {
1518 if (empty($setting->nosave
)) {
1528 * Admin settings class. Only exists on setting pages.
1529 * Read & write happens at this level; no authentication.
1531 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1533 abstract class admin_setting
{
1534 /** @var string unique ascii name, either 'mysetting' for settings that in config, or 'myplugin/mysetting' for ones in config_plugins. */
1536 /** @var string localised name */
1537 public $visiblename;
1538 /** @var string localised long description in Markdown format */
1539 public $description;
1540 /** @var mixed Can be string or array of string */
1541 public $defaultsetting;
1543 public $updatedcallback;
1544 /** @var mixed can be String or Null. Null means main config table */
1545 public $plugin; // null means main config table
1546 /** @var bool true indicates this setting does not actually save anything, just information */
1547 public $nosave = false;
1548 /** @var bool if set, indicates that a change to this setting requires rebuild course cache */
1549 public $affectsmodinfo = false;
1550 /** @var array of admin_setting_flag - These are extra checkboxes attached to a setting. */
1551 private $flags = array();
1555 * @param string $name unique ascii name, either 'mysetting' for settings that in config,
1556 * or 'myplugin/mysetting' for ones in config_plugins.
1557 * @param string $visiblename localised name
1558 * @param string $description localised long description
1559 * @param mixed $defaultsetting string or array depending on implementation
1561 public function __construct($name, $visiblename, $description, $defaultsetting) {
1562 $this->parse_setting_name($name);
1563 $this->visiblename
= $visiblename;
1564 $this->description
= $description;
1565 $this->defaultsetting
= $defaultsetting;
1569 * Generic function to add a flag to this admin setting.
1571 * @param bool $enabled - One of self::OPTION_ENABLED or self::OPTION_DISABLED
1572 * @param bool $default - The default for the flag
1573 * @param string $shortname - The shortname for this flag. Used as a suffix for the setting name.
1574 * @param string $displayname - The display name for this flag. Used as a label next to the checkbox.
1576 protected function set_flag_options($enabled, $default, $shortname, $displayname) {
1577 if (empty($this->flags
[$shortname])) {
1578 $this->flags
[$shortname] = new admin_setting_flag($enabled, $default, $shortname, $displayname);
1580 $this->flags
[$shortname]->set_options($enabled, $default);
1585 * Set the enabled options flag on this admin setting.
1587 * @param bool $enabled - One of self::OPTION_ENABLED or self::OPTION_DISABLED
1588 * @param bool $default - The default for the flag
1590 public function set_enabled_flag_options($enabled, $default) {
1591 $this->set_flag_options($enabled, $default, 'enabled', new lang_string('enabled', 'core_admin'));
1595 * Set the advanced options flag on this admin setting.
1597 * @param bool $enabled - One of self::OPTION_ENABLED or self::OPTION_DISABLED
1598 * @param bool $default - The default for the flag
1600 public function set_advanced_flag_options($enabled, $default) {
1601 $this->set_flag_options($enabled, $default, 'adv', new lang_string('advanced'));
1606 * Set the locked options flag on this admin setting.
1608 * @param bool $enabled - One of self::OPTION_ENABLED or self::OPTION_DISABLED
1609 * @param bool $default - The default for the flag
1611 public function set_locked_flag_options($enabled, $default) {
1612 $this->set_flag_options($enabled, $default, 'locked', new lang_string('locked', 'core_admin'));
1616 * Get the currently saved value for a setting flag
1618 * @param admin_setting_flag $flag - One of the admin_setting_flag for this admin_setting.
1621 public function get_setting_flag_value(admin_setting_flag
$flag) {
1622 $value = $this->config_read($this->name
. '_' . $flag->get_shortname());
1623 if (!isset($value)) {
1624 $value = $flag->get_default();
1627 return !empty($value);
1631 * Get the list of defaults for the flags on this setting.
1633 * @param array of strings describing the defaults for this setting. This is appended to by this function.
1635 public function get_setting_flag_defaults(& $defaults) {
1636 foreach ($this->flags
as $flag) {
1637 if ($flag->is_enabled() && $flag->get_default()) {
1638 $defaults[] = $flag->get_displayname();
1644 * Output the input fields for the advanced and locked flags on this setting.
1646 * @param bool $adv - The current value of the advanced flag.
1647 * @param bool $locked - The current value of the locked flag.
1648 * @return string $output - The html for the flags.
1650 public function output_setting_flags() {
1653 foreach ($this->flags
as $flag) {
1654 if ($flag->is_enabled()) {
1655 $output .= $flag->output_setting_flag($this);
1659 if (!empty($output)) {
1660 return html_writer
::tag('span', $output, array('class' => 'adminsettingsflags'));
1666 * Write the values of the flags for this admin setting.
1668 * @param array $data - The data submitted from the form or null to set the default value for new installs.
1669 * @return bool - true if successful.
1671 public function write_setting_flags($data) {
1673 foreach ($this->flags
as $flag) {
1674 $result = $result && $flag->write_setting_flag($this, $data);
1680 * Set up $this->name and potentially $this->plugin
1682 * Set up $this->name and possibly $this->plugin based on whether $name looks
1683 * like 'settingname' or 'plugin/settingname'. Also, do some sanity checking
1684 * on the names, that is, output a developer debug warning if the name
1685 * contains anything other than [a-zA-Z0-9_]+.
1687 * @param string $name the setting name passed in to the constructor.
1689 private function parse_setting_name($name) {
1690 $bits = explode('/', $name);
1691 if (count($bits) > 2) {
1692 throw new moodle_exception('invalidadminsettingname', '', '', $name);
1694 $this->name
= array_pop($bits);
1695 if (!preg_match('/^[a-zA-Z0-9_]+$/', $this->name
)) {
1696 throw new moodle_exception('invalidadminsettingname', '', '', $name);
1698 if (!empty($bits)) {
1699 $this->plugin
= array_pop($bits);
1700 if ($this->plugin
=== 'moodle') {
1701 $this->plugin
= null;
1702 } else if (!preg_match('/^[a-zA-Z0-9_]+$/', $this->plugin
)) {
1703 throw new moodle_exception('invalidadminsettingname', '', '', $name);
1709 * Returns the fullname prefixed by the plugin
1712 public function get_full_name() {
1713 return 's_'.$this->plugin
.'_'.$this->name
;
1717 * Returns the ID string based on plugin and name
1720 public function get_id() {
1721 return 'id_s_'.$this->plugin
.'_'.$this->name
;
1725 * @param bool $affectsmodinfo If true, changes to this setting will
1726 * cause the course cache to be rebuilt
1728 public function set_affects_modinfo($affectsmodinfo) {
1729 $this->affectsmodinfo
= $affectsmodinfo;
1733 * Returns the config if possible
1735 * @return mixed returns config if successful else null
1737 public function config_read($name) {
1739 if (!empty($this->plugin
)) {
1740 $value = get_config($this->plugin
, $name);
1741 return $value === false ?
NULL : $value;
1744 if (isset($CFG->$name)) {
1753 * Used to set a config pair and log change
1755 * @param string $name
1756 * @param mixed $value Gets converted to string if not null
1757 * @return bool Write setting to config table
1759 public function config_write($name, $value) {
1760 global $DB, $USER, $CFG;
1762 if ($this->nosave
) {
1766 // make sure it is a real change
1767 $oldvalue = get_config($this->plugin
, $name);
1768 $oldvalue = ($oldvalue === false) ?
null : $oldvalue; // normalise
1769 $value = is_null($value) ?
null : (string)$value;
1771 if ($oldvalue === $value) {
1776 set_config($name, $value, $this->plugin
);
1778 // Some admin settings affect course modinfo
1779 if ($this->affectsmodinfo
) {
1780 // Clear course cache for all courses
1781 rebuild_course_cache(0, true);
1784 $this->add_to_config_log($name, $oldvalue, $value);
1786 return true; // BC only
1790 * Log config changes if necessary.
1791 * @param string $name
1792 * @param string $oldvalue
1793 * @param string $value
1795 protected function add_to_config_log($name, $oldvalue, $value) {
1796 add_to_config_log($name, $oldvalue, $value, $this->plugin
);
1800 * Returns current value of this setting
1801 * @return mixed array or string depending on instance, NULL means not set yet
1803 public abstract function get_setting();
1806 * Returns default setting if exists
1807 * @return mixed array or string depending on instance; NULL means no default, user must supply
1809 public function get_defaultsetting() {
1810 $adminroot = admin_get_root(false, false);
1811 if (!empty($adminroot->custom_defaults
)) {
1812 $plugin = is_null($this->plugin
) ?
'moodle' : $this->plugin
;
1813 if (isset($adminroot->custom_defaults
[$plugin])) {
1814 if (array_key_exists($this->name
, $adminroot->custom_defaults
[$plugin])) { // null is valid value here ;-)
1815 return $adminroot->custom_defaults
[$plugin][$this->name
];
1819 return $this->defaultsetting
;
1825 * @param mixed $data string or array, must not be NULL
1826 * @return string empty string if ok, string error message otherwise
1828 public abstract function write_setting($data);
1831 * Return part of form with setting
1832 * This function should always be overwritten
1834 * @param mixed $data array or string depending on setting
1835 * @param string $query
1838 public function output_html($data, $query='') {
1839 // should be overridden
1844 * Function called if setting updated - cleanup, cache reset, etc.
1845 * @param string $functionname Sets the function name
1848 public function set_updatedcallback($functionname) {
1849 $this->updatedcallback
= $functionname;
1853 * Execute postupdatecallback if necessary.
1854 * @param mixed $original original value before write_setting()
1855 * @return bool true if changed, false if not.
1857 public function post_write_settings($original) {
1858 // Comparison must work for arrays too.
1859 if (serialize($original) === serialize($this->get_setting())) {
1863 $callbackfunction = $this->updatedcallback
;
1864 if (!empty($callbackfunction) and function_exists($callbackfunction)) {
1865 $callbackfunction($this->get_full_name());
1871 * Is setting related to query text - used when searching
1872 * @param string $query
1875 public function is_related($query) {
1876 if (strpos(strtolower($this->name
), $query) !== false) {
1879 if (strpos(core_text
::strtolower($this->visiblename
), $query) !== false) {
1882 if (strpos(core_text
::strtolower($this->description
), $query) !== false) {
1885 $current = $this->get_setting();
1886 if (!is_null($current)) {
1887 if (is_string($current)) {
1888 if (strpos(core_text
::strtolower($current), $query) !== false) {
1893 $default = $this->get_defaultsetting();
1894 if (!is_null($default)) {
1895 if (is_string($default)) {
1896 if (strpos(core_text
::strtolower($default), $query) !== false) {
1906 * An additional option that can be applied to an admin setting.
1907 * The currently supported options are 'ADVANCED' and 'LOCKED'.
1909 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1911 class admin_setting_flag
{
1912 /** @var bool Flag to indicate if this option can be toggled for this setting */
1913 private $enabled = false;
1914 /** @var bool Flag to indicate if this option defaults to true or false */
1915 private $default = false;
1916 /** @var string Short string used to create setting name - e.g. 'adv' */
1917 private $shortname = '';
1918 /** @var string String used as the label for this flag */
1919 private $displayname = '';
1920 /** @const Checkbox for this flag is displayed in admin page */
1921 const ENABLED
= true;
1922 /** @const Checkbox for this flag is not displayed in admin page */
1923 const DISABLED
= false;
1928 * @param bool $enabled Can this option can be toggled.
1929 * Should be one of admin_setting_flag::ENABLED or admin_setting_flag::DISABLED.
1930 * @param bool $default The default checked state for this setting option.
1931 * @param string $shortname The shortname of this flag. Currently supported flags are 'locked' and 'adv'
1932 * @param string $displayname The displayname of this flag. Used as a label for the flag.
1934 public function __construct($enabled, $default, $shortname, $displayname) {
1935 $this->shortname
= $shortname;
1936 $this->displayname
= $displayname;
1937 $this->set_options($enabled, $default);
1941 * Update the values of this setting options class
1943 * @param bool $enabled Can this option can be toggled.
1944 * Should be one of admin_setting_flag::ENABLED or admin_setting_flag::DISABLED.
1945 * @param bool $default The default checked state for this setting option.
1947 public function set_options($enabled, $default) {
1948 $this->enabled
= $enabled;
1949 $this->default = $default;
1953 * Should this option appear in the interface and be toggleable?
1955 * @return bool Is it enabled?
1957 public function is_enabled() {
1958 return $this->enabled
;
1962 * Should this option be checked by default?
1964 * @return bool Is it on by default?
1966 public function get_default() {
1967 return $this->default;
1971 * Return the short name for this flag. e.g. 'adv' or 'locked'
1975 public function get_shortname() {
1976 return $this->shortname
;
1980 * Return the display name for this flag. e.g. 'Advanced' or 'Locked'
1984 public function get_displayname() {
1985 return $this->displayname
;
1989 * Save the submitted data for this flag - or set it to the default if $data is null.
1991 * @param admin_setting $setting - The admin setting for this flag
1992 * @param array $data - The data submitted from the form or null to set the default value for new installs.
1995 public function write_setting_flag(admin_setting
$setting, $data) {
1997 if ($this->is_enabled()) {
1998 if (!isset($data)) {
1999 $value = $this->get_default();
2001 $value = !empty($data[$setting->get_full_name() . '_' . $this->get_shortname()]);
2003 $result = $setting->config_write($setting->name
. '_' . $this->get_shortname(), $value);
2011 * Output the checkbox for this setting flag. Should only be called if the flag is enabled.
2013 * @param admin_setting $setting - The admin setting for this flag
2014 * @return string - The html for the checkbox.
2016 public function output_setting_flag(admin_setting
$setting) {
2017 $value = $setting->get_setting_flag_value($this);
2018 $output = ' <input type="checkbox" class="form-checkbox" ' .
2019 ' id="' . $setting->get_id() . '_' . $this->get_shortname() . '" ' .
2020 ' name="' . $setting->get_full_name() . '_' . $this->get_shortname() . '" ' .
2021 ' value="1" ' . ($value ?
'checked="checked"' : '') . ' />' .
2022 ' <label for="' . $setting->get_id() . '_' . $this->get_shortname() . '">' .
2023 $this->get_displayname() .
2031 * No setting - just heading and text.
2033 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2035 class admin_setting_heading
extends admin_setting
{
2038 * not a setting, just text
2039 * @param string $name unique ascii name, either 'mysetting' for settings that in config, or 'myplugin/mysetting' for ones in config_plugins.
2040 * @param string $heading heading
2041 * @param string $information text in box
2043 public function __construct($name, $heading, $information) {
2044 $this->nosave
= true;
2045 parent
::__construct($name, $heading, $information, '');
2049 * Always returns true
2050 * @return bool Always returns true
2052 public function get_setting() {
2057 * Always returns true
2058 * @return bool Always returns true
2060 public function get_defaultsetting() {
2065 * Never write settings
2066 * @return string Always returns an empty string
2068 public function write_setting($data) {
2069 // do not write any setting
2074 * Returns an HTML string
2075 * @return string Returns an HTML string
2077 public function output_html($data, $query='') {
2080 if ($this->visiblename
!= '') {
2081 $return .= $OUTPUT->heading($this->visiblename
, 3, 'main');
2083 if ($this->description
!= '') {
2084 $return .= $OUTPUT->box(highlight($query, markdown_to_html($this->description
)), 'generalbox formsettingheading');
2092 * The most flexibly setting, user is typing text
2094 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2096 class admin_setting_configtext
extends admin_setting
{
2098 /** @var mixed int means PARAM_XXX type, string is a allowed format in regex */
2100 /** @var int default field size */
2104 * Config text constructor
2106 * @param string $name unique ascii name, either 'mysetting' for settings that in config, or 'myplugin/mysetting' for ones in config_plugins.
2107 * @param string $visiblename localised
2108 * @param string $description long localised info
2109 * @param string $defaultsetting
2110 * @param mixed $paramtype int means PARAM_XXX type, string is a allowed format in regex
2111 * @param int $size default field size
2113 public function __construct($name, $visiblename, $description, $defaultsetting, $paramtype=PARAM_RAW
, $size=null) {
2114 $this->paramtype
= $paramtype;
2115 if (!is_null($size)) {
2116 $this->size
= $size;
2118 $this->size
= ($paramtype === PARAM_INT
) ?
5 : 30;
2120 parent
::__construct($name, $visiblename, $description, $defaultsetting);
2124 * Return the setting
2126 * @return mixed returns config if successful else null
2128 public function get_setting() {
2129 return $this->config_read($this->name
);
2132 public function write_setting($data) {
2133 if ($this->paramtype
=== PARAM_INT
and $data === '') {
2134 // do not complain if '' used instead of 0
2137 // $data is a string
2138 $validated = $this->validate($data);
2139 if ($validated !== true) {
2142 return ($this->config_write($this->name
, $data) ?
'' : get_string('errorsetting', 'admin'));
2146 * Validate data before storage
2147 * @param string data
2148 * @return mixed true if ok string if error found
2150 public function validate($data) {
2151 // allow paramtype to be a custom regex if it is the form of /pattern/
2152 if (preg_match('#^/.*/$#', $this->paramtype
)) {
2153 if (preg_match($this->paramtype
, $data)) {
2156 return get_string('validateerror', 'admin');
2159 } else if ($this->paramtype
=== PARAM_RAW
) {
2163 $cleaned = clean_param($data, $this->paramtype
);
2164 if ("$data" === "$cleaned") { // implicit conversion to string is needed to do exact comparison
2167 return get_string('validateerror', 'admin');
2173 * Return an XHTML string for the setting
2174 * @return string Returns an XHTML string
2176 public function output_html($data, $query='') {
2177 $default = $this->get_defaultsetting();
2179 return format_admin_setting($this, $this->visiblename
,
2180 '<div class="form-text defaultsnext"><input type="text" size="'.$this->size
.'" id="'.$this->get_id().'" name="'.$this->get_full_name().'" value="'.s($data).'" /></div>',
2181 $this->description
, true, '', $default, $query);
2186 * Text input with a maximum length constraint.
2188 * @copyright 2015 onwards Ankit Agarwal
2189 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2191 class admin_setting_configtext_with_maxlength
extends admin_setting_configtext
{
2193 /** @var int maximum number of chars allowed. */
2194 protected $maxlength;
2197 * Config text constructor
2199 * @param string $name unique ascii name, either 'mysetting' for settings that in config,
2200 * or 'myplugin/mysetting' for ones in config_plugins.
2201 * @param string $visiblename localised
2202 * @param string $description long localised info
2203 * @param string $defaultsetting
2204 * @param mixed $paramtype int means PARAM_XXX type, string is a allowed format in regex
2205 * @param int $size default field size
2206 * @param mixed $maxlength int maxlength allowed, 0 for infinite.
2208 public function __construct($name, $visiblename, $description, $defaultsetting, $paramtype=PARAM_RAW
,
2209 $size=null, $maxlength = 0) {
2210 $this->maxlength
= $maxlength;
2211 parent
::__construct($name, $visiblename, $description, $defaultsetting, $paramtype, $size);
2215 * Validate data before storage
2217 * @param string $data data
2218 * @return mixed true if ok string if error found
2220 public function validate($data) {
2221 $parentvalidation = parent
::validate($data);
2222 if ($parentvalidation === true) {
2223 if ($this->maxlength
> 0) {
2224 // Max length check.
2225 $length = core_text
::strlen($data);
2226 if ($length > $this->maxlength
) {
2227 return get_string('maximumchars', 'moodle', $this->maxlength
);
2231 return true; // No max length check needed.
2234 return $parentvalidation;
2240 * General text area without html editor.
2242 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2244 class admin_setting_configtextarea
extends admin_setting_configtext
{
2249 * @param string $name
2250 * @param string $visiblename
2251 * @param string $description
2252 * @param mixed $defaultsetting string or array
2253 * @param mixed $paramtype
2254 * @param string $cols The number of columns to make the editor
2255 * @param string $rows The number of rows to make the editor
2257 public function __construct($name, $visiblename, $description, $defaultsetting, $paramtype=PARAM_RAW
, $cols='60', $rows='8') {
2258 $this->rows
= $rows;
2259 $this->cols
= $cols;
2260 parent
::__construct($name, $visiblename, $description, $defaultsetting, $paramtype);
2264 * Returns an XHTML string for the editor
2266 * @param string $data
2267 * @param string $query
2268 * @return string XHTML string for the editor
2270 public function output_html($data, $query='') {
2271 $default = $this->get_defaultsetting();
2273 $defaultinfo = $default;
2274 if (!is_null($default) and $default !== '') {
2275 $defaultinfo = "\n".$default;
2278 return format_admin_setting($this, $this->visiblename
,
2279 '<div class="form-textarea" ><textarea rows="'. $this->rows
.'" cols="'. $this->cols
.'" id="'. $this->get_id() .'" name="'. $this->get_full_name() .'" spellcheck="true">'. s($data) .'</textarea></div>',
2280 $this->description
, true, '', $defaultinfo, $query);
2286 * General text area with html editor.
2288 class admin_setting_confightmleditor
extends admin_setting_configtext
{
2293 * @param string $name
2294 * @param string $visiblename
2295 * @param string $description
2296 * @param mixed $defaultsetting string or array
2297 * @param mixed $paramtype
2299 public function __construct($name, $visiblename, $description, $defaultsetting, $paramtype=PARAM_RAW
, $cols='60', $rows='8') {
2300 $this->rows
= $rows;
2301 $this->cols
= $cols;
2302 parent
::__construct($name, $visiblename, $description, $defaultsetting, $paramtype);
2303 editors_head_setup();
2307 * Returns an XHTML string for the editor
2309 * @param string $data
2310 * @param string $query
2311 * @return string XHTML string for the editor
2313 public function output_html($data, $query='') {
2314 $default = $this->get_defaultsetting();
2316 $defaultinfo = $default;
2317 if (!is_null($default) and $default !== '') {
2318 $defaultinfo = "\n".$default;
2321 $editor = editors_get_preferred_editor(FORMAT_HTML
);
2322 $editor->set_text($data);
2323 $editor->use_editor($this->get_id(), array('noclean'=>true));
2325 return format_admin_setting($this, $this->visiblename
,
2326 '<div class="form-textarea"><textarea rows="'. $this->rows
.'" cols="'. $this->cols
.'" id="'. $this->get_id() .'" name="'. $this->get_full_name() .'" spellcheck="true">'. s($data) .'</textarea></div>',
2327 $this->description
, true, '', $defaultinfo, $query);
2333 * Password field, allows unmasking of password
2335 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2337 class admin_setting_configpasswordunmask
extends admin_setting_configtext
{
2340 * @param string $name unique ascii name, either 'mysetting' for settings that in config, or 'myplugin/mysetting' for ones in config_plugins.
2341 * @param string $visiblename localised
2342 * @param string $description long localised info
2343 * @param string $defaultsetting default password
2345 public function __construct($name, $visiblename, $description, $defaultsetting) {
2346 parent
::__construct($name, $visiblename, $description, $defaultsetting, PARAM_RAW
, 30);
2350 * Log config changes if necessary.
2351 * @param string $name
2352 * @param string $oldvalue
2353 * @param string $value
2355 protected function add_to_config_log($name, $oldvalue, $value) {
2356 if ($value !== '') {
2357 $value = '********';
2359 if ($oldvalue !== '' and $oldvalue !== null) {
2360 $oldvalue = '********';
2362 parent
::add_to_config_log($name, $oldvalue, $value);
2366 * Returns XHTML for the field
2367 * Writes Javascript into the HTML below right before the last div
2369 * @todo Make javascript available through newer methods if possible
2370 * @param string $data Value for the field
2371 * @param string $query Passed as final argument for format_admin_setting
2372 * @return string XHTML field
2374 public function output_html($data, $query='') {
2375 $id = $this->get_id();
2376 $unmask = get_string('unmaskpassword', 'form');
2377 $unmaskjs = '<script type="text/javascript">
2379 var is_ie = (navigator.userAgent.toLowerCase().indexOf("msie") != -1);
2381 document.getElementById("'.$id.'").setAttribute("autocomplete", "off");
2383 var unmaskdiv = document.getElementById("'.$id.'unmaskdiv");
2385 var unmaskchb = document.createElement("input");
2386 unmaskchb.setAttribute("type", "checkbox");
2387 unmaskchb.setAttribute("id", "'.$id.'unmask");
2388 unmaskchb.onchange = function() {unmaskPassword("'.$id.'");};
2389 unmaskdiv.appendChild(unmaskchb);
2391 var unmasklbl = document.createElement("label");
2392 unmasklbl.innerHTML = "'.addslashes_js($unmask).'";
2394 unmasklbl.setAttribute("htmlFor", "'.$id.'unmask");
2396 unmasklbl.setAttribute("for", "'.$id.'unmask");
2398 unmaskdiv.appendChild(unmasklbl);
2401 // ugly hack to work around the famous onchange IE bug
2402 unmaskchb.onclick = function() {this.blur();};
2403 unmaskdiv.onclick = function() {this.blur();};
2407 return format_admin_setting($this, $this->visiblename
,
2408 '<div class="form-password"><input type="password" size="'.$this->size
.'" id="'.$id.'" name="'.$this->get_full_name().'" value="'.s($data).'" /><div class="unmask" id="'.$id.'unmaskdiv"></div>'.$unmaskjs.'</div>',
2409 $this->description
, true, '', NULL, $query);
2414 * Empty setting used to allow flags (advanced) on settings that can have no sensible default.
2415 * Note: Only advanced makes sense right now - locked does not.
2417 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2419 class admin_setting_configempty
extends admin_setting_configtext
{
2422 * @param string $name
2423 * @param string $visiblename
2424 * @param string $description
2426 public function __construct($name, $visiblename, $description) {
2427 parent
::__construct($name, $visiblename, $description, '', PARAM_RAW
);
2431 * Returns an XHTML string for the hidden field
2433 * @param string $data
2434 * @param string $query
2435 * @return string XHTML string for the editor
2437 public function output_html($data, $query='') {
2438 return format_admin_setting($this,
2440 '<div class="form-empty" >' .
2441 '<input type="hidden"' .
2442 ' id="'. $this->get_id() .'"' .
2443 ' name="'. $this->get_full_name() .'"' .
2444 ' value=""/></div>',
2457 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2459 class admin_setting_configfile
extends admin_setting_configtext
{
2462 * @param string $name unique ascii name, either 'mysetting' for settings that in config, or 'myplugin/mysetting' for ones in config_plugins.
2463 * @param string $visiblename localised
2464 * @param string $description long localised info
2465 * @param string $defaultdirectory default directory location
2467 public function __construct($name, $visiblename, $description, $defaultdirectory) {
2468 parent
::__construct($name, $visiblename, $description, $defaultdirectory, PARAM_RAW
, 50);
2472 * Returns XHTML for the field
2474 * Returns XHTML for the field and also checks whether the file
2475 * specified in $data exists using file_exists()
2477 * @param string $data File name and path to use in value attr
2478 * @param string $query
2479 * @return string XHTML field
2481 public function output_html($data, $query='') {
2483 $default = $this->get_defaultsetting();
2486 if (file_exists($data)) {
2487 $executable = '<span class="pathok">✔</span>';
2489 $executable = '<span class="patherror">✘</span>';
2495 if (!empty($CFG->preventexecpath
)) {
2496 $this->visiblename
.= '<div class="form-overridden">'.get_string('execpathnotallowed', 'admin').'</div>';
2497 $readonly = 'readonly="readonly"';
2500 return format_admin_setting($this, $this->visiblename
,
2501 '<div class="form-file defaultsnext"><input '.$readonly.' type="text" size="'.$this->size
.'" id="'.$this->get_id().'" name="'.$this->get_full_name().'" value="'.s($data).'" />'.$executable.'</div>',
2502 $this->description
, true, '', $default, $query);
2506 * Checks if execpatch has been disabled in config.php
2508 public function write_setting($data) {
2510 if (!empty($CFG->preventexecpath
)) {
2511 if ($this->get_setting() === null) {
2512 // Use default during installation.
2513 $data = $this->get_defaultsetting();
2514 if ($data === null) {
2521 return parent
::write_setting($data);
2527 * Path to executable file
2529 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2531 class admin_setting_configexecutable
extends admin_setting_configfile
{
2534 * Returns an XHTML field
2536 * @param string $data This is the value for the field
2537 * @param string $query
2538 * @return string XHTML field
2540 public function output_html($data, $query='') {
2542 $default = $this->get_defaultsetting();
2545 if (file_exists($data) and !is_dir($data) and is_executable($data)) {
2546 $executable = '<span class="pathok">✔</span>';
2548 $executable = '<span class="patherror">✘</span>';
2554 if (!empty($CFG->preventexecpath
)) {
2555 $this->visiblename
.= '<div class="form-overridden">'.get_string('execpathnotallowed', 'admin').'</div>';
2556 $readonly = 'readonly="readonly"';
2559 return format_admin_setting($this, $this->visiblename
,
2560 '<div class="form-file defaultsnext"><input '.$readonly.' type="text" size="'.$this->size
.'" id="'.$this->get_id().'" name="'.$this->get_full_name().'" value="'.s($data).'" />'.$executable.'</div>',
2561 $this->description
, true, '', $default, $query);
2569 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2571 class admin_setting_configdirectory
extends admin_setting_configfile
{
2574 * Returns an XHTML field
2576 * @param string $data This is the value for the field
2577 * @param string $query
2578 * @return string XHTML
2580 public function output_html($data, $query='') {
2582 $default = $this->get_defaultsetting();
2585 if (file_exists($data) and is_dir($data)) {
2586 $executable = '<span class="pathok">✔</span>';
2588 $executable = '<span class="patherror">✘</span>';
2594 if (!empty($CFG->preventexecpath
)) {
2595 $this->visiblename
.= '<div class="form-overridden">'.get_string('execpathnotallowed', 'admin').'</div>';
2596 $readonly = 'readonly="readonly"';
2599 return format_admin_setting($this, $this->visiblename
,
2600 '<div class="form-file defaultsnext"><input '.$readonly.' type="text" size="'.$this->size
.'" id="'.$this->get_id().'" name="'.$this->get_full_name().'" value="'.s($data).'" />'.$executable.'</div>',
2601 $this->description
, true, '', $default, $query);
2609 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2611 class admin_setting_configcheckbox
extends admin_setting
{
2612 /** @var string Value used when checked */
2614 /** @var string Value used when not checked */
2619 * @param string $name unique ascii name, either 'mysetting' for settings that in config, or 'myplugin/mysetting' for ones in config_plugins.
2620 * @param string $visiblename localised
2621 * @param string $description long localised info
2622 * @param string $defaultsetting
2623 * @param string $yes value used when checked
2624 * @param string $no value used when not checked
2626 public function __construct($name, $visiblename, $description, $defaultsetting, $yes='1', $no='0') {
2627 parent
::__construct($name, $visiblename, $description, $defaultsetting);
2628 $this->yes
= (string)$yes;
2629 $this->no
= (string)$no;
2633 * Retrieves the current setting using the objects name
2637 public function get_setting() {
2638 return $this->config_read($this->name
);
2642 * Sets the value for the setting
2644 * Sets the value for the setting to either the yes or no values
2645 * of the object by comparing $data to yes
2647 * @param mixed $data Gets converted to str for comparison against yes value
2648 * @return string empty string or error
2650 public function write_setting($data) {
2651 if ((string)$data === $this->yes
) { // convert to strings before comparison
2656 return ($this->config_write($this->name
, $data) ?
'' : get_string('errorsetting', 'admin'));
2660 * Returns an XHTML checkbox field
2662 * @param string $data If $data matches yes then checkbox is checked
2663 * @param string $query
2664 * @return string XHTML field
2666 public function output_html($data, $query='') {
2667 $default = $this->get_defaultsetting();
2669 if (!is_null($default)) {
2670 if ((string)$default === $this->yes
) {
2671 $defaultinfo = get_string('checkboxyes', 'admin');
2673 $defaultinfo = get_string('checkboxno', 'admin');
2676 $defaultinfo = NULL;
2679 if ((string)$data === $this->yes
) { // convert to strings before comparison
2680 $checked = 'checked="checked"';
2685 return format_admin_setting($this, $this->visiblename
,
2686 '<div class="form-checkbox defaultsnext" ><input type="hidden" name="'.$this->get_full_name().'" value="'.s($this->no
).'" /> '
2687 .'<input type="checkbox" id="'.$this->get_id().'" name="'.$this->get_full_name().'" value="'.s($this->yes
).'" '.$checked.' /></div>',
2688 $this->description
, true, '', $defaultinfo, $query);
2694 * Multiple checkboxes, each represents different value, stored in csv format
2696 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2698 class admin_setting_configmulticheckbox
extends admin_setting
{
2699 /** @var array Array of choices value=>label */
2703 * Constructor: uses parent::__construct
2705 * @param string $name unique ascii name, either 'mysetting' for settings that in config, or 'myplugin/mysetting' for ones in config_plugins.
2706 * @param string $visiblename localised
2707 * @param string $description long localised info
2708 * @param array $defaultsetting array of selected
2709 * @param array $choices array of $value=>$label for each checkbox
2711 public function __construct($name, $visiblename, $description, $defaultsetting, $choices) {
2712 $this->choices
= $choices;
2713 parent
::__construct($name, $visiblename, $description, $defaultsetting);
2717 * This public function may be used in ancestors for lazy loading of choices
2719 * @todo Check if this function is still required content commented out only returns true
2720 * @return bool true if loaded, false if error
2722 public function load_choices() {
2724 if (is_array($this->choices)) {
2727 .... load choices here
2733 * Is setting related to query text - used when searching
2735 * @param string $query
2736 * @return bool true on related, false on not or failure
2738 public function is_related($query) {
2739 if (!$this->load_choices() or empty($this->choices
)) {
2742 if (parent
::is_related($query)) {
2746 foreach ($this->choices
as $desc) {
2747 if (strpos(core_text
::strtolower($desc), $query) !== false) {
2755 * Returns the current setting if it is set
2757 * @return mixed null if null, else an array
2759 public function get_setting() {
2760 $result = $this->config_read($this->name
);
2762 if (is_null($result)) {
2765 if ($result === '') {
2768 $enabled = explode(',', $result);
2770 foreach ($enabled as $option) {
2771 $setting[$option] = 1;
2777 * Saves the setting(s) provided in $data
2779 * @param array $data An array of data, if not array returns empty str
2780 * @return mixed empty string on useless data or bool true=success, false=failed
2782 public function write_setting($data) {
2783 if (!is_array($data)) {
2784 return ''; // ignore it
2786 if (!$this->load_choices() or empty($this->choices
)) {
2789 unset($data['xxxxx']);
2791 foreach ($data as $key => $value) {
2792 if ($value and array_key_exists($key, $this->choices
)) {
2796 return $this->config_write($this->name
, implode(',', $result)) ?
'' : get_string('errorsetting', 'admin');
2800 * Returns XHTML field(s) as required by choices
2802 * Relies on data being an array should data ever be another valid vartype with
2803 * acceptable value this may cause a warning/error
2804 * if (!is_array($data)) would fix the problem
2806 * @todo Add vartype handling to ensure $data is an array
2808 * @param array $data An array of checked values
2809 * @param string $query
2810 * @return string XHTML field
2812 public function output_html($data, $query='') {
2813 if (!$this->load_choices() or empty($this->choices
)) {
2816 $default = $this->get_defaultsetting();
2817 if (is_null($default)) {
2820 if (is_null($data)) {
2824 $defaults = array();
2825 foreach ($this->choices
as $key=>$description) {
2826 if (!empty($data[$key])) {
2827 $checked = 'checked="checked"';
2831 if (!empty($default[$key])) {
2832 $defaults[] = $description;
2835 $options[] = '<input type="checkbox" id="'.$this->get_id().'_'.$key.'" name="'.$this->get_full_name().'['.$key.']" value="1" '.$checked.' />'
2836 .'<label for="'.$this->get_id().'_'.$key.'">'.highlightfast($query, $description).'</label>';
2839 if (is_null($default)) {
2840 $defaultinfo = NULL;
2841 } else if (!empty($defaults)) {
2842 $defaultinfo = implode(', ', $defaults);
2844 $defaultinfo = get_string('none');
2847 $return = '<div class="form-multicheckbox">';
2848 $return .= '<input type="hidden" name="'.$this->get_full_name().'[xxxxx]" value="1" />'; // something must be submitted even if nothing selected
2851 foreach ($options as $option) {
2852 $return .= '<li>'.$option.'</li>';
2856 $return .= '</div>';
2858 return format_admin_setting($this, $this->visiblename
, $return, $this->description
, false, '', $defaultinfo, $query);
2865 * Multiple checkboxes 2, value stored as string 00101011
2867 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2869 class admin_setting_configmulticheckbox2
extends admin_setting_configmulticheckbox
{
2872 * Returns the setting if set
2874 * @return mixed null if not set, else an array of set settings
2876 public function get_setting() {
2877 $result = $this->config_read($this->name
);
2878 if (is_null($result)) {
2881 if (!$this->load_choices()) {
2884 $result = str_pad($result, count($this->choices
), '0');
2885 $result = preg_split('//', $result, -1, PREG_SPLIT_NO_EMPTY
);
2887 foreach ($this->choices
as $key=>$unused) {
2888 $value = array_shift($result);
2897 * Save setting(s) provided in $data param
2899 * @param array $data An array of settings to save
2900 * @return mixed empty string for bad data or bool true=>success, false=>error
2902 public function write_setting($data) {
2903 if (!is_array($data)) {
2904 return ''; // ignore it
2906 if (!$this->load_choices() or empty($this->choices
)) {
2910 foreach ($this->choices
as $key=>$unused) {
2911 if (!empty($data[$key])) {
2917 return $this->config_write($this->name
, $result) ?
'' : get_string('errorsetting', 'admin');
2923 * Select one value from list
2925 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2927 class admin_setting_configselect
extends admin_setting
{
2928 /** @var array Array of choices value=>label */
2933 * @param string $name unique ascii name, either 'mysetting' for settings that in config, or 'myplugin/mysetting' for ones in config_plugins.
2934 * @param string $visiblename localised
2935 * @param string $description long localised info
2936 * @param string|int $defaultsetting
2937 * @param array $choices array of $value=>$label for each selection
2939 public function __construct($name, $visiblename, $description, $defaultsetting, $choices) {
2940 $this->choices
= $choices;
2941 parent
::__construct($name, $visiblename, $description, $defaultsetting);
2945 * This function may be used in ancestors for lazy loading of choices
2947 * Override this method if loading of choices is expensive, such
2948 * as when it requires multiple db requests.
2950 * @return bool true if loaded, false if error
2952 public function load_choices() {
2954 if (is_array($this->choices)) {
2957 .... load choices here
2963 * Check if this is $query is related to a choice
2965 * @param string $query
2966 * @return bool true if related, false if not
2968 public function is_related($query) {
2969 if (parent
::is_related($query)) {
2972 if (!$this->load_choices()) {
2975 foreach ($this->choices
as $key=>$value) {
2976 if (strpos(core_text
::strtolower($key), $query) !== false) {
2979 if (strpos(core_text
::strtolower($value), $query) !== false) {
2987 * Return the setting
2989 * @return mixed returns config if successful else null
2991 public function get_setting() {
2992 return $this->config_read($this->name
);
2998 * @param string $data
2999 * @return string empty of error string
3001 public function write_setting($data) {
3002 if (!$this->load_choices() or empty($this->choices
)) {
3005 if (!array_key_exists($data, $this->choices
)) {
3006 return ''; // ignore it
3009 return ($this->config_write($this->name
, $data) ?
'' : get_string('errorsetting', 'admin'));
3013 * Returns XHTML select field
3015 * Ensure the options are loaded, and generate the XHTML for the select
3016 * element and any warning message. Separating this out from output_html
3017 * makes it easier to subclass this class.
3019 * @param string $data the option to show as selected.
3020 * @param string $current the currently selected option in the database, null if none.
3021 * @param string $default the default selected option.
3022 * @return array the HTML for the select element, and a warning message.
3024 public function output_select_html($data, $current, $default, $extraname = '') {
3025 if (!$this->load_choices() or empty($this->choices
)) {
3026 return array('', '');
3030 if (is_null($current)) {
3032 } else if (empty($current) and (array_key_exists('', $this->choices
) or array_key_exists(0, $this->choices
))) {
3034 } else if (!array_key_exists($current, $this->choices
)) {
3035 $warning = get_string('warningcurrentsetting', 'admin', s($current));
3036 if (!is_null($default) and $data == $current) {
3037 $data = $default; // use default instead of first value when showing the form
3041 $selecthtml = '<select id="'.$this->get_id().'" name="'.$this->get_full_name().$extraname.'">';
3042 foreach ($this->choices
as $key => $value) {
3043 // the string cast is needed because key may be integer - 0 is equal to most strings!
3044 $selecthtml .= '<option value="'.$key.'"'.((string)$key==$data ?
' selected="selected"' : '').'>'.$value.'</option>';
3046 $selecthtml .= '</select>';
3047 return array($selecthtml, $warning);
3051 * Returns XHTML select field and wrapping div(s)
3053 * @see output_select_html()
3055 * @param string $data the option to show as selected
3056 * @param string $query
3057 * @return string XHTML field and wrapping div
3059 public function output_html($data, $query='') {
3060 $default = $this->get_defaultsetting();
3061 $current = $this->get_setting();
3063 list($selecthtml, $warning) = $this->output_select_html($data, $current, $default);
3068 if (!is_null($default) and array_key_exists($default, $this->choices
)) {
3069 $defaultinfo = $this->choices
[$default];
3071 $defaultinfo = NULL;
3074 $return = '<div class="form-select defaultsnext">' . $selecthtml . '</div>';
3076 return format_admin_setting($this, $this->visiblename
, $return, $this->description
, true, $warning, $defaultinfo, $query);
3082 * Select multiple items from list
3084 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3086 class admin_setting_configmultiselect
extends admin_setting_configselect
{
3089 * @param string $name unique ascii name, either 'mysetting' for settings that in config, or 'myplugin/mysetting' for ones in config_plugins.
3090 * @param string $visiblename localised
3091 * @param string $description long localised info
3092 * @param array $defaultsetting array of selected items
3093 * @param array $choices array of $value=>$label for each list item
3095 public function __construct($name, $visiblename, $description, $defaultsetting, $choices) {
3096 parent
::__construct($name, $visiblename, $description, $defaultsetting, $choices);
3100 * Returns the select setting(s)
3102 * @return mixed null or array. Null if no settings else array of setting(s)
3104 public function get_setting() {
3105 $result = $this->config_read($this->name
);
3106 if (is_null($result)) {
3109 if ($result === '') {
3112 return explode(',', $result);
3116 * Saves setting(s) provided through $data
3118 * Potential bug in the works should anyone call with this function
3119 * using a vartype that is not an array
3121 * @param array $data
3123 public function write_setting($data) {
3124 if (!is_array($data)) {
3125 return ''; //ignore it
3127 if (!$this->load_choices() or empty($this->choices
)) {
3131 unset($data['xxxxx']);
3134 foreach ($data as $value) {
3135 if (!array_key_exists($value, $this->choices
)) {
3136 continue; // ignore it
3141 return ($this->config_write($this->name
, implode(',', $save)) ?
'' : get_string('errorsetting', 'admin'));
3145 * Is setting related to query text - used when searching
3147 * @param string $query
3148 * @return bool true if related, false if not
3150 public function is_related($query) {
3151 if (!$this->load_choices() or empty($this->choices
)) {
3154 if (parent
::is_related($query)) {
3158 foreach ($this->choices
as $desc) {
3159 if (strpos(core_text
::strtolower($desc), $query) !== false) {
3167 * Returns XHTML multi-select field
3169 * @todo Add vartype handling to ensure $data is an array
3170 * @param array $data Array of values to select by default
3171 * @param string $query
3172 * @return string XHTML multi-select field
3174 public function output_html($data, $query='') {
3175 if (!$this->load_choices() or empty($this->choices
)) {
3178 $choices = $this->choices
;
3179 $default = $this->get_defaultsetting();
3180 if (is_null($default)) {
3183 if (is_null($data)) {
3187 $defaults = array();
3188 $size = min(10, count($this->choices
));
3189 $return = '<div class="form-select"><input type="hidden" name="'.$this->get_full_name().'[xxxxx]" value="1" />'; // something must be submitted even if nothing selected
3190 $return .= '<select id="'.$this->get_id().'" name="'.$this->get_full_name().'[]" size="'.$size.'" multiple="multiple">';
3191 foreach ($this->choices
as $key => $description) {
3192 if (in_array($key, $data)) {
3193 $selected = 'selected="selected"';
3197 if (in_array($key, $default)) {
3198 $defaults[] = $description;
3201 $return .= '<option value="'.s($key).'" '.$selected.'>'.$description.'</option>';
3204 if (is_null($default)) {
3205 $defaultinfo = NULL;
3206 } if (!empty($defaults)) {
3207 $defaultinfo = implode(', ', $defaults);
3209 $defaultinfo = get_string('none');
3212 $return .= '</select></div>';
3213 return format_admin_setting($this, $this->visiblename
, $return, $this->description
, true, '', $defaultinfo, $query);
3220 * This is a liiitle bit messy. we're using two selects, but we're returning
3221 * them as an array named after $name (so we only use $name2 internally for the setting)
3223 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3225 class admin_setting_configtime
extends admin_setting
{
3226 /** @var string Used for setting second select (minutes) */
3231 * @param string $hoursname setting for hours
3232 * @param string $minutesname setting for hours
3233 * @param string $visiblename localised
3234 * @param string $description long localised info
3235 * @param array $defaultsetting array representing default time 'h'=>hours, 'm'=>minutes
3237 public function __construct($hoursname, $minutesname, $visiblename, $description, $defaultsetting) {
3238 $this->name2
= $minutesname;
3239 parent
::__construct($hoursname, $visiblename, $description, $defaultsetting);
3243 * Get the selected time
3245 * @return mixed An array containing 'h'=>xx, 'm'=>xx, or null if not set
3247 public function get_setting() {
3248 $result1 = $this->config_read($this->name
);
3249 $result2 = $this->config_read($this->name2
);
3250 if (is_null($result1) or is_null($result2)) {
3254 return array('h' => $result1, 'm' => $result2);
3258 * Store the time (hours and minutes)
3260 * @param array $data Must be form 'h'=>xx, 'm'=>xx
3261 * @return bool true if success, false if not
3263 public function write_setting($data) {
3264 if (!is_array($data)) {
3268 $result = $this->config_write($this->name
, (int)$data['h']) && $this->config_write($this->name2
, (int)$data['m']);
3269 return ($result ?
'' : get_string('errorsetting', 'admin'));
3273 * Returns XHTML time select fields
3275 * @param array $data Must be form 'h'=>xx, 'm'=>xx
3276 * @param string $query
3277 * @return string XHTML time select fields and wrapping div(s)
3279 public function output_html($data, $query='') {
3280 $default = $this->get_defaultsetting();
3282 if (is_array($default)) {
3283 $defaultinfo = $default['h'].':'.$default['m'];
3285 $defaultinfo = NULL;
3288 $return = '<div class="form-time defaultsnext">';
3289 $return .= '<label class="accesshide" for="' . $this->get_id() . 'h">' . get_string('hours') . '</label>';
3290 $return .= '<select id="' . $this->get_id() . 'h" name="' . $this->get_full_name() . '[h]">';
3291 for ($i = 0; $i < 24; $i++
) {
3292 $return .= '<option value="' . $i . '"' . ($i == $data['h'] ?
' selected="selected"' : '') . '>' . $i . '</option>';
3294 $return .= '</select>:';
3295 $return .= '<label class="accesshide" for="' . $this->get_id() . 'm">' . get_string('minutes') . '</label>';
3296 $return .= '<select id="' . $this->get_id() . 'm" name="' . $this->get_full_name() . '[m]">';
3297 for ($i = 0; $i < 60; $i +
= 5) {
3298 $return .= '<option value="' . $i . '"' . ($i == $data['m'] ?
' selected="selected"' : '') . '>' . $i . '</option>';
3300 $return .= '</select>';
3301 $return .= '</div>';
3302 return format_admin_setting($this, $this->visiblename
, $return, $this->description
,
3303 $this->get_id() . 'h', '', $defaultinfo, $query);
3310 * Seconds duration setting.
3312 * @copyright 2012 Petr Skoda (http://skodak.org)
3313 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3315 class admin_setting_configduration
extends admin_setting
{
3317 /** @var int default duration unit */
3318 protected $defaultunit;
3322 * @param string $name unique ascii name, either 'mysetting' for settings that in config,
3323 * or 'myplugin/mysetting' for ones in config_plugins.
3324 * @param string $visiblename localised name
3325 * @param string $description localised long description
3326 * @param mixed $defaultsetting string or array depending on implementation
3327 * @param int $defaultunit - day, week, etc. (in seconds)
3329 public function __construct($name, $visiblename, $description, $defaultsetting, $defaultunit = 86400) {
3330 if (is_number($defaultsetting)) {
3331 $defaultsetting = self
::parse_seconds($defaultsetting);
3333 $units = self
::get_units();
3334 if (isset($units[$defaultunit])) {
3335 $this->defaultunit
= $defaultunit;
3337 $this->defaultunit
= 86400;
3339 parent
::__construct($name, $visiblename, $description, $defaultsetting);
3343 * Returns selectable units.
3347 protected static function get_units() {
3349 604800 => get_string('weeks'),
3350 86400 => get_string('days'),
3351 3600 => get_string('hours'),
3352 60 => get_string('minutes'),
3353 1 => get_string('seconds'),
3358 * Converts seconds to some more user friendly string.
3360 * @param int $seconds
3363 protected static function get_duration_text($seconds) {
3364 if (empty($seconds)) {
3365 return get_string('none');
3367 $data = self
::parse_seconds($seconds);
3368 switch ($data['u']) {
3370 return get_string('numweeks', '', $data['v']);
3372 return get_string('numdays', '', $data['v']);
3374 return get_string('numhours', '', $data['v']);
3376 return get_string('numminutes', '', $data['v']);
3378 return get_string('numseconds', '', $data['v']*$data['u']);
3383 * Finds suitable units for given duration.
3385 * @param int $seconds
3388 protected static function parse_seconds($seconds) {
3389 foreach (self
::get_units() as $unit => $unused) {
3390 if ($seconds %
$unit === 0) {
3391 return array('v'=>(int)($seconds/$unit), 'u'=>$unit);
3394 return array('v'=>(int)$seconds, 'u'=>1);
3398 * Get the selected duration as array.
3400 * @return mixed An array containing 'v'=>xx, 'u'=>xx, or null if not set
3402 public function get_setting() {
3403 $seconds = $this->config_read($this->name
);
3404 if (is_null($seconds)) {
3408 return self
::parse_seconds($seconds);
3412 * Store the duration as seconds.
3414 * @param array $data Must be form 'h'=>xx, 'm'=>xx
3415 * @return bool true if success, false if not
3417 public function write_setting($data) {
3418 if (!is_array($data)) {
3422 $seconds = (int)($data['v']*$data['u']);
3424 return get_string('errorsetting', 'admin');
3427 $result = $this->config_write($this->name
, $seconds);
3428 return ($result ?
'' : get_string('errorsetting', 'admin'));
3432 * Returns duration text+select fields.
3434 * @param array $data Must be form 'v'=>xx, 'u'=>xx
3435 * @param string $query
3436 * @return string duration text+select fields and wrapping div(s)
3438 public function output_html($data, $query='') {
3439 $default = $this->get_defaultsetting();
3441 if (is_number($default)) {
3442 $defaultinfo = self
::get_duration_text($default);
3443 } else if (is_array($default)) {
3444 $defaultinfo = self
::get_duration_text($default['v']*$default['u']);
3446 $defaultinfo = null;
3449 $units = self
::get_units();
3451 $inputid = $this->get_id() . 'v';
3453 $return = '<div class="form-duration defaultsnext">';
3454 $return .= '<input type="text" size="5" id="' . $inputid . '" name="' . $this->get_full_name() .
3455 '[v]" value="' . s($data['v']) . '" />';
3456 $return .= '<label for="' . $this->get_id() . 'u" class="accesshide">' .
3457 get_string('durationunits', 'admin') . '</label>';
3458 $return .= '<select id="'.$this->get_id().'u" name="'.$this->get_full_name().'[u]">';
3459 foreach ($units as $val => $text) {
3461 if ($data['v'] == 0) {
3462 if ($val == $this->defaultunit
) {
3463 $selected = ' selected="selected"';
3465 } else if ($val == $data['u']) {
3466 $selected = ' selected="selected"';
3468 $return .= '<option value="'.$val.'"'.$selected.'>'.$text.'</option>';
3470 $return .= '</select></div>';
3471 return format_admin_setting($this, $this->visiblename
, $return, $this->description
, $inputid, '', $defaultinfo, $query);
3477 * Seconds duration setting with an advanced checkbox, that controls a additional
3478 * $name.'_adv' setting.
3480 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3481 * @copyright 2014 The Open University
3483 class admin_setting_configduration_with_advanced
extends admin_setting_configduration
{
3486 * @param string $name unique ascii name, either 'mysetting' for settings that in config,
3487 * or 'myplugin/mysetting' for ones in config_plugins.
3488 * @param string $visiblename localised name
3489 * @param string $description localised long description
3490 * @param array $defaultsetting array of int value, and bool whether it is
3491 * is advanced by default.
3492 * @param int $defaultunit - day, week, etc. (in seconds)
3494 public function __construct($name, $visiblename, $description, $defaultsetting, $defaultunit = 86400) {
3495 parent
::__construct($name, $visiblename, $description, $defaultsetting['value'], $defaultunit);
3496 $this->set_advanced_flag_options(admin_setting_flag
::ENABLED
, !empty($defaultsetting['adv']));
3502 * Used to validate a textarea used for ip addresses
3504 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3505 * @copyright 2011 Petr Skoda (http://skodak.org)
3507 class admin_setting_configiplist
extends admin_setting_configtextarea
{
3510 * Validate the contents of the textarea as IP addresses
3512 * Used to validate a new line separated list of IP addresses collected from
3513 * a textarea control
3515 * @param string $data A list of IP Addresses separated by new lines
3516 * @return mixed bool true for success or string:error on failure
3518 public function validate($data) {
3520 $ips = explode("\n", $data);
3525 foreach($ips as $ip) {
3527 if (preg_match('#^(\d{1,3})(\.\d{1,3}){0,3}$#', $ip, $match) ||
3528 preg_match('#^(\d{1,3})(\.\d{1,3}){0,3}(\/\d{1,2})$#', $ip, $match) ||
3529 preg_match('#^(\d{1,3})(\.\d{1,3}){3}(-\d{1,3})$#', $ip, $match)) {
3539 return get_string('validateerror', 'admin');
3546 * An admin setting for selecting one or more users who have a capability
3547 * in the system context
3549 * An admin setting for selecting one or more users, who have a particular capability
3550 * in the system context. Warning, make sure the list will never be too long. There is
3551 * no paging or searching of this list.
3553 * To correctly get a list of users from this config setting, you need to call the
3554 * get_users_from_config($CFG->mysetting, $capability); function in moodlelib.php.
3556 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3558 class admin_setting_users_with_capability
extends admin_setting_configmultiselect
{
3559 /** @var string The capabilities name */
3560 protected $capability;
3561 /** @var int include admin users too */
3562 protected $includeadmins;
3567 * @param string $name unique ascii name, either 'mysetting' for settings that in config, or 'myplugin/mysetting' for ones in config_plugins.
3568 * @param string $visiblename localised name
3569 * @param string $description localised long description
3570 * @param array $defaultsetting array of usernames
3571 * @param string $capability string capability name.
3572 * @param bool $includeadmins include administrators
3574 function __construct($name, $visiblename, $description, $defaultsetting, $capability, $includeadmins = true) {
3575 $this->capability
= $capability;
3576 $this->includeadmins
= $includeadmins;
3577 parent
::__construct($name, $visiblename, $description, $defaultsetting, NULL);
3581 * Load all of the uses who have the capability into choice array
3583 * @return bool Always returns true
3585 function load_choices() {
3586 if (is_array($this->choices
)) {
3589 list($sort, $sortparams) = users_order_by_sql('u');
3590 if (!empty($sortparams)) {
3591 throw new coding_exception('users_order_by_sql returned some query parameters. ' .
3592 'This is unexpected, and a problem because there is no way to pass these ' .
3593 'parameters to get_users_by_capability. See MDL-34657.');
3595 $userfields = 'u.id, u.username, ' . get_all_user_name_fields(true, 'u');
3596 $users = get_users_by_capability(context_system
::instance(), $this->capability
, $userfields, $sort);
3597 $this->choices
= array(
3598 '$@NONE@$' => get_string('nobody'),
3599 '$@ALL@$' => get_string('everyonewhocan', 'admin', get_capability_string($this->capability
)),
3601 if ($this->includeadmins
) {
3602 $admins = get_admins();
3603 foreach ($admins as $user) {
3604 $this->choices
[$user->id
] = fullname($user);
3607 if (is_array($users)) {
3608 foreach ($users as $user) {
3609 $this->choices
[$user->id
] = fullname($user);
3616 * Returns the default setting for class
3618 * @return mixed Array, or string. Empty string if no default
3620 public function get_defaultsetting() {
3621 $this->load_choices();
3622 $defaultsetting = parent
::get_defaultsetting();
3623 if (empty($defaultsetting)) {
3624 return array('$@NONE@$');
3625 } else if (array_key_exists($defaultsetting, $this->choices
)) {
3626 return $defaultsetting;
3633 * Returns the current setting
3635 * @return mixed array or string
3637 public function get_setting() {
3638 $result = parent
::get_setting();
3639 if ($result === null) {
3640 // this is necessary for settings upgrade
3643 if (empty($result)) {
3644 $result = array('$@NONE@$');
3650 * Save the chosen setting provided as $data
3652 * @param array $data
3653 * @return mixed string or array
3655 public function write_setting($data) {
3656 // If all is selected, remove any explicit options.
3657 if (in_array('$@ALL@$', $data)) {
3658 $data = array('$@ALL@$');
3660 // None never needs to be written to the DB.
3661 if (in_array('$@NONE@$', $data)) {
3662 unset($data[array_search('$@NONE@$', $data)]);
3664 return parent
::write_setting($data);
3670 * Special checkbox for calendar - resets SESSION vars.
3672 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3674 class admin_setting_special_adminseesall
extends admin_setting_configcheckbox
{
3676 * Calls the parent::__construct with default values
3678 * name => calendar_adminseesall
3679 * visiblename => get_string('adminseesall', 'admin')
3680 * description => get_string('helpadminseesall', 'admin')
3681 * defaultsetting => 0
3683 public function __construct() {
3684 parent
::__construct('calendar_adminseesall', get_string('adminseesall', 'admin'),
3685 get_string('helpadminseesall', 'admin'), '0');
3689 * Stores the setting passed in $data
3691 * @param mixed gets converted to string for comparison
3692 * @return string empty string or error message
3694 public function write_setting($data) {
3696 return parent
::write_setting($data);
3701 * Special select for settings that are altered in setup.php and can not be altered on the fly
3703 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3705 class admin_setting_special_selectsetup
extends admin_setting_configselect
{
3707 * Reads the setting directly from the database
3711 public function get_setting() {
3712 // read directly from db!
3713 return get_config(NULL, $this->name
);
3717 * Save the setting passed in $data
3719 * @param string $data The setting to save
3720 * @return string empty or error message
3722 public function write_setting($data) {
3724 // do not change active CFG setting!
3725 $current = $CFG->{$this->name
};
3726 $result = parent
::write_setting($data);
3727 $CFG->{$this->name
} = $current;
3734 * Special select for frontpage - stores data in course table
3736 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3738 class admin_setting_sitesetselect
extends admin_setting_configselect
{
3740 * Returns the site name for the selected site
3743 * @return string The site name of the selected site
3745 public function get_setting() {
3746 $site = course_get_format(get_site())->get_course();
3747 return $site->{$this->name
};
3751 * Updates the database and save the setting
3753 * @param string data
3754 * @return string empty or error message
3756 public function write_setting($data) {
3757 global $DB, $SITE, $COURSE;
3758 if (!in_array($data, array_keys($this->choices
))) {
3759 return get_string('errorsetting', 'admin');
3761 $record = new stdClass();
3762 $record->id
= SITEID
;
3763 $temp = $this->name
;
3764 $record->$temp = $data;
3765 $record->timemodified
= time();
3767 course_get_format($SITE)->update_course_format_options($record);
3768 $DB->update_record('course', $record);
3771 $SITE = $DB->get_record('course', array('id'=>$SITE->id
), '*', MUST_EXIST
);
3772 if ($SITE->id
== $COURSE->id
) {
3775 format_base
::reset_course_cache($SITE->id
);
3784 * Select for blog's bloglevel setting: if set to 0, will set blog_menu
3787 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3789 class admin_setting_bloglevel
extends admin_setting_configselect
{
3791 * Updates the database and save the setting
3793 * @param string data
3794 * @return string empty or error message
3796 public function write_setting($data) {
3799 $blogblocks = $DB->get_records_select('block', "name LIKE 'blog_%' AND visible = 1");
3800 foreach ($blogblocks as $block) {
3801 $DB->set_field('block', 'visible', 0, array('id' => $block->id
));
3804 // reenable all blocks only when switching from disabled blogs
3805 if (isset($CFG->bloglevel
) and $CFG->bloglevel
== 0) {
3806 $blogblocks = $DB->get_records_select('block', "name LIKE 'blog_%' AND visible = 0");
3807 foreach ($blogblocks as $block) {
3808 $DB->set_field('block', 'visible', 1, array('id' => $block->id
));
3812 return parent
::write_setting($data);
3818 * Special select - lists on the frontpage - hacky
3820 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3822 class admin_setting_courselist_frontpage
extends admin_setting
{
3823 /** @var array Array of choices value=>label */
3827 * Construct override, requires one param
3829 * @param bool $loggedin Is the user logged in
3831 public function __construct($loggedin) {
3833 require_once($CFG->dirroot
.'/course/lib.php');
3834 $name = 'frontpage'.($loggedin ?
'loggedin' : '');
3835 $visiblename = get_string('frontpage'.($loggedin ?
'loggedin' : ''),'admin');
3836 $description = get_string('configfrontpage'.($loggedin ?
'loggedin' : ''),'admin');
3837 $defaults = array(FRONTPAGEALLCOURSELIST
);
3838 parent
::__construct($name, $visiblename, $description, $defaults);
3842 * Loads the choices available
3844 * @return bool always returns true
3846 public function load_choices() {
3847 if (is_array($this->choices
)) {
3850 $this->choices
= array(FRONTPAGENEWS
=> get_string('frontpagenews'),
3851 FRONTPAGEALLCOURSELIST
=> get_string('frontpagecourselist'),
3852 FRONTPAGEENROLLEDCOURSELIST
=> get_string('frontpageenrolledcourselist'),
3853 FRONTPAGECATEGORYNAMES
=> get_string('frontpagecategorynames'),
3854 FRONTPAGECATEGORYCOMBO
=> get_string('frontpagecategorycombo'),
3855 FRONTPAGECOURSESEARCH
=> get_string('frontpagecoursesearch'),
3856 'none' => get_string('none'));
3857 if ($this->name
=== 'frontpage') {
3858 unset($this->choices
[FRONTPAGEENROLLEDCOURSELIST
]);
3864 * Returns the selected settings
3866 * @param mixed array or setting or null
3868 public function get_setting() {
3869 $result = $this->config_read($this->name
);
3870 if (is_null($result)) {
3873 if ($result === '') {
3876 return explode(',', $result);
3880 * Save the selected options
3882 * @param array $data
3883 * @return mixed empty string (data is not an array) or bool true=success false=failure
3885 public function write_setting($data) {
3886 if (!is_array($data)) {
3889 $this->load_choices();
3891 foreach($data as $datum) {
3892 if ($datum == 'none' or !array_key_exists($datum, $this->choices
)) {
3895 $save[$datum] = $datum; // no duplicates
3897 return ($this->config_write($this->name
, implode(',', $save)) ?
'' : get_string('errorsetting', 'admin'));
3901 * Return XHTML select field and wrapping div
3903 * @todo Add vartype handling to make sure $data is an array
3904 * @param array $data Array of elements to select by default
3905 * @return string XHTML select field and wrapping div
3907 public function output_html($data, $query='') {
3908 $this->load_choices();
3909 $currentsetting = array();
3910 foreach ($data as $key) {
3911 if ($key != 'none' and array_key_exists($key, $this->choices
)) {
3912 $currentsetting[] = $key; // already selected first
3916 $return = '<div class="form-group">';
3917 for ($i = 0; $i < count($this->choices
) - 1; $i++
) {
3918 if (!array_key_exists($i, $currentsetting)) {
3919 $currentsetting[$i] = 'none'; //none
3921 $return .='<select class="form-select" id="'.$this->get_id().$i.'" name="'.$this->get_full_name().'[]">';
3922 foreach ($this->choices
as $key => $value) {
3923 $return .= '<option value="'.$key.'"'.("$key" == $currentsetting[$i] ?
' selected="selected"' : '').'>'.$value.'</option>';
3925 $return .= '</select>';
3926 if ($i !== count($this->choices
) - 2) {
3927 $return .= '<br />';
3930 $return .= '</div>';
3932 return format_admin_setting($this, $this->visiblename
, $return, $this->description
, false, '', NULL, $query);
3938 * Special checkbox for frontpage - stores data in course table
3940 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3942 class admin_setting_sitesetcheckbox
extends admin_setting_configcheckbox
{
3944 * Returns the current sites name
3948 public function get_setting() {
3949 $site = course_get_format(get_site())->get_course();
3950 return $site->{$this->name
};
3954 * Save the selected setting
3956 * @param string $data The selected site
3957 * @return string empty string or error message
3959 public function write_setting($data) {
3960 global $DB, $SITE, $COURSE;
3961 $record = new stdClass();
3962 $record->id
= $SITE->id
;
3963 $record->{$this->name
} = ($data == '1' ?
1 : 0);
3964 $record->timemodified
= time();
3966 course_get_format($SITE)->update_course_format_options($record);
3967 $DB->update_record('course', $record);
3970 $SITE = $DB->get_record('course', array('id'=>$SITE->id
), '*', MUST_EXIST
);
3971 if ($SITE->id
== $COURSE->id
) {
3974 format_base
::reset_course_cache($SITE->id
);
3981 * Special text for frontpage - stores data in course table.
3982 * Empty string means not set here. Manual setting is required.
3984 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3986 class admin_setting_sitesettext
extends admin_setting_configtext
{
3988 * Return the current setting
3990 * @return mixed string or null
3992 public function get_setting() {
3993 $site = course_get_format(get_site())->get_course();
3994 return $site->{$this->name
} != '' ?
$site->{$this->name
} : NULL;
3998 * Validate the selected data
4000 * @param string $data The selected value to validate
4001 * @return mixed true or message string
4003 public function validate($data) {
4005 $cleaned = clean_param($data, PARAM_TEXT
);
4006 if ($cleaned === '') {
4007 return get_string('required');
4009 if ($this->name
==='shortname' &&
4010 $DB->record_exists_sql('SELECT id from {course} WHERE shortname = ? AND id <> ?', array($data, $SITE->id
))) {
4011 return get_string('shortnametaken', 'error', $data);
4013 if ("$data" == "$cleaned") { // implicit conversion to string is needed to do exact comparison
4016 return get_string('validateerror', 'admin');
4021 * Save the selected setting
4023 * @param string $data The selected value
4024 * @return string empty or error message
4026 public function write_setting($data) {
4027 global $DB, $SITE, $COURSE;
4028 $data = trim($data);
4029 $validated = $this->validate($data);
4030 if ($validated !== true) {
4034 $record = new stdClass();
4035 $record->id
= $SITE->id
;
4036 $record->{$this->name
} = $data;
4037 $record->timemodified
= time();
4039 course_get_format($SITE)->update_course_format_options($record);
4040 $DB->update_record('course', $record);
4043 $SITE = $DB->get_record('course', array('id'=>$SITE->id
), '*', MUST_EXIST
);
4044 if ($SITE->id
== $COURSE->id
) {
4047 format_base
::reset_course_cache($SITE->id
);
4055 * Special text editor for site description.
4057 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4059 class admin_setting_special_frontpagedesc
extends admin_setting
{
4061 * Calls parent::__construct with specific arguments
4063 public function __construct() {
4064 parent
::__construct('summary', get_string('frontpagedescription'), get_string('frontpagedescriptionhelp'), NULL);
4065 editors_head_setup();
4069 * Return the current setting
4070 * @return string The current setting
4072 public function get_setting() {
4073 $site = course_get_format(get_site())->get_course();
4074 return $site->{$this->name
};
4078 * Save the new setting
4080 * @param string $data The new value to save
4081 * @return string empty or error message
4083 public function write_setting($data) {
4084 global $DB, $SITE, $COURSE;
4085 $record = new stdClass();
4086 $record->id
= $SITE->id
;
4087 $record->{$this->name
} = $data;
4088 $record->timemodified
= time();
4090 course_get_format($SITE)->update_course_format_options($record);
4091 $DB->update_record('course', $record);
4094 $SITE = $DB->get_record('course', array('id'=>$SITE->id
), '*', MUST_EXIST
);
4095 if ($SITE->id
== $COURSE->id
) {
4098 format_base
::reset_course_cache($SITE->id
);
4104 * Returns XHTML for the field plus wrapping div
4106 * @param string $data The current value
4107 * @param string $query
4108 * @return string The XHTML output
4110 public function output_html($data, $query='') {
4113 $return = '<div class="form-htmlarea">'.print_textarea(true, 15, 60, 0, 0, $this->get_full_name(), $data, 0, true, 'summary') .'</div>';
4115 return format_admin_setting($this, $this->visiblename
, $return, $this->description
, false, '', NULL, $query);
4121 * Administration interface for emoticon_manager settings.
4123 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4125 class admin_setting_emoticons
extends admin_setting
{
4128 * Calls parent::__construct with specific args
4130 public function __construct() {
4133 $manager = get_emoticon_manager();
4134 $defaults = $this->prepare_form_data($manager->default_emoticons());
4135 parent
::__construct('emoticons', get_string('emoticons', 'admin'), get_string('emoticons_desc', 'admin'), $defaults);
4139 * Return the current setting(s)
4141 * @return array Current settings array
4143 public function get_setting() {
4146 $manager = get_emoticon_manager();
4148 $config = $this->config_read($this->name
);
4149 if (is_null($config)) {
4153 $config = $manager->decode_stored_config($config);
4154 if (is_null($config)) {
4158 return $this->prepare_form_data($config);
4162 * Save selected settings
4164 * @param array $data Array of settings to save
4167 public function write_setting($data) {
4169 $manager = get_emoticon_manager();
4170 $emoticons = $this->process_form_data($data);
4172 if ($emoticons === false) {
4176 if ($this->config_write($this->name
, $manager->encode_stored_config($emoticons))) {
4177 return ''; // success
4179 return get_string('errorsetting', 'admin') . $this->visiblename
. html_writer
::empty_tag('br');
4184 * Return XHTML field(s) for options
4186 * @param array $data Array of options to set in HTML
4187 * @return string XHTML string for the fields and wrapping div(s)
4189 public function output_html($data, $query='') {
4192 $out = html_writer
::start_tag('table', array('id' => 'emoticonsetting', 'class' => 'admintable generaltable'));
4193 $out .= html_writer
::start_tag('thead');
4194 $out .= html_writer
::start_tag('tr');
4195 $out .= html_writer
::tag('th', get_string('emoticontext', 'admin'));
4196 $out .= html_writer
::tag('th', get_string('emoticonimagename', 'admin'));
4197 $out .= html_writer
::tag('th', get_string('emoticoncomponent', 'admin'));
4198 $out .= html_writer
::tag('th', get_string('emoticonalt', 'admin'), array('colspan' => 2));
4199 $out .= html_writer
::tag('th', '');
4200 $out .= html_writer
::end_tag('tr');
4201 $out .= html_writer
::end_tag('thead');
4202 $out .= html_writer
::start_tag('tbody');
4204 foreach($data as $field => $value) {
4207 $out .= html_writer
::start_tag('tr');
4208 $current_text = $value;
4209 $current_filename = '';
4210 $current_imagecomponent = '';
4211 $current_altidentifier = '';
4212 $current_altcomponent = '';
4214 $current_filename = $value;
4216 $current_imagecomponent = $value;
4218 $current_altidentifier = $value;
4220 $current_altcomponent = $value;
4223 $out .= html_writer
::tag('td',
4224 html_writer
::empty_tag('input',
4227 'class' => 'form-text',
4228 'name' => $this->get_full_name().'['.$field.']',
4231 ), array('class' => 'c'.$i)
4235 if (get_string_manager()->string_exists($current_altidentifier, $current_altcomponent)) {
4236 $alt = get_string($current_altidentifier, $current_altcomponent);
4238 $alt = $current_text;
4240 if ($current_filename) {
4241 $out .= html_writer
::tag('td', $OUTPUT->render(new pix_emoticon($current_filename, $alt, $current_imagecomponent)));
4243 $out .= html_writer
::tag('td', '');
4245 $out .= html_writer
::end_tag('tr');
4252 $out .= html_writer
::end_tag('tbody');
4253 $out .= html_writer
::end_tag('table');
4254 $out = html_writer
::tag('div', $out, array('class' => 'form-group'));
4255 $out .= html_writer
::tag('div', html_writer
::link(new moodle_url('/admin/resetemoticons.php'), get_string('emoticonsreset', 'admin')));
4257 return format_admin_setting($this, $this->visiblename
, $out, $this->description
, false, '', NULL, $query);
4261 * Converts the array of emoticon objects provided by {@see emoticon_manager} into admin settings form data
4263 * @see self::process_form_data()
4264 * @param array $emoticons array of emoticon objects as returned by {@see emoticon_manager}
4265 * @return array of form fields and their values
4267 protected function prepare_form_data(array $emoticons) {
4271 foreach ($emoticons as $emoticon) {
4272 $form['text'.$i] = $emoticon->text
;
4273 $form['imagename'.$i] = $emoticon->imagename
;
4274 $form['imagecomponent'.$i] = $emoticon->imagecomponent
;
4275 $form['altidentifier'.$i] = $emoticon->altidentifier
;
4276 $form['altcomponent'.$i] = $emoticon->altcomponent
;
4279 // add one more blank field set for new object
4280 $form['text'.$i] = '';
4281 $form['imagename'.$i] = '';
4282 $form['imagecomponent'.$i] = '';
4283 $form['altidentifier'.$i] = '';
4284 $form['altcomponent'.$i] = '';
4290 * Converts the data from admin settings form into an array of emoticon objects
4292 * @see self::prepare_form_data()
4293 * @param array $data array of admin form fields and values
4294 * @return false|array of emoticon objects
4296 protected function process_form_data(array $form) {
4298 $count = count($form); // number of form field values
4301 // we must get five fields per emoticon object
4305 $emoticons = array();
4306 for ($i = 0; $i < $count / 5; $i++
) {
4307 $emoticon = new stdClass();
4308 $emoticon->text
= clean_param(trim($form['text'.$i]), PARAM_NOTAGS
);
4309 $emoticon->imagename
= clean_param(trim($form['imagename'.$i]), PARAM_PATH
);
4310 $emoticon->imagecomponent
= clean_param(trim($form['imagecomponent'.$i]), PARAM_COMPONENT
);
4311 $emoticon->altidentifier
= clean_param(trim($form['altidentifier'.$i]), PARAM_STRINGID
);
4312 $emoticon->altcomponent
= clean_param(trim($form['altcomponent'.$i]), PARAM_COMPONENT
);
4314 if (strpos($emoticon->text
, ':/') !== false or strpos($emoticon->text
, '//') !== false) {
4315 // prevent from breaking http://url.addresses by accident
4316 $emoticon->text
= '';
4319 if (strlen($emoticon->text
) < 2) {
4320 // do not allow single character emoticons
4321 $emoticon->text
= '';
4324 if (preg_match('/^[a-zA-Z]+[a-zA-Z0-9]*$/', $emoticon->text
)) {
4325 // emoticon text must contain some non-alphanumeric character to prevent
4326 // breaking HTML tags
4327 $emoticon->text
= '';
4330 if ($emoticon->text
!== '' and $emoticon->imagename
!== '' and $emoticon->imagecomponent
!== '') {
4331 $emoticons[] = $emoticon;
4340 * Special setting for limiting of the list of available languages.
4342 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4344 class admin_setting_langlist
extends admin_setting_configtext
{
4346 * Calls parent::__construct with specific arguments
4348 public function __construct() {
4349 parent
::__construct('langlist', get_string('langlist', 'admin'), get_string('configlanglist', 'admin'), '', PARAM_NOTAGS
);
4353 * Save the new setting
4355 * @param string $data The new setting
4358 public function write_setting($data) {
4359 $return = parent
::write_setting($data);
4360 get_string_manager()->reset_caches();
4367 * Selection of one of the recognised countries using the list
4368 * returned by {@link get_list_of_countries()}.
4370 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4372 class admin_settings_country_select
extends admin_setting_configselect
{
4373 protected $includeall;
4374 public function __construct($name, $visiblename, $description, $defaultsetting, $includeall=false) {
4375 $this->includeall
= $includeall;
4376 parent
::__construct($name, $visiblename, $description, $defaultsetting, NULL);
4380 * Lazy-load the available choices for the select box
4382 public function load_choices() {
4384 if (is_array($this->choices
)) {
4387 $this->choices
= array_merge(
4388 array('0' => get_string('choosedots')),
4389 get_string_manager()->get_list_of_countries($this->includeall
));
4396 * admin_setting_configselect for the default number of sections in a course,
4397 * simply so we can lazy-load the choices.
4399 * @copyright 2011 The Open University
4400 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4402 class admin_settings_num_course_sections
extends admin_setting_configselect
{
4403 public function __construct($name, $visiblename, $description, $defaultsetting) {
4404 parent
::__construct($name, $visiblename, $description, $defaultsetting, array());
4407 /** Lazy-load the available choices for the select box */
4408 public function load_choices() {
4409 $max = get_config('moodlecourse', 'maxsections');
4410 if (!isset($max) ||
!is_numeric($max)) {
4413 for ($i = 0; $i <= $max; $i++
) {
4414 $this->choices
[$i] = "$i";
4422 * Course category selection
4424 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4426 class admin_settings_coursecat_select
extends admin_setting_configselect
{
4428 * Calls parent::__construct with specific arguments
4430 public function __construct($name, $visiblename, $description, $defaultsetting) {
4431 parent
::__construct($name, $visiblename, $description, $defaultsetting, NULL);
4435 * Load the available choices for the select box
4439 public function load_choices() {
4441 require_once($CFG->dirroot
.'/course/lib.php');
4442 if (is_array($this->choices
)) {
4445 $this->choices
= make_categories_options();
4452 * Special control for selecting days to backup
4454 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4456 class admin_setting_special_backupdays
extends admin_setting_configmulticheckbox2
{
4458 * Calls parent::__construct with specific arguments
4460 public function __construct() {
4461 parent
::__construct('backup_auto_weekdays', get_string('automatedbackupschedule','backup'), get_string('automatedbackupschedulehelp','backup'), array(), NULL);
4462 $this->plugin
= 'backup';
4466 * Load the available choices for the select box
4468 * @return bool Always returns true
4470 public function load_choices() {
4471 if (is_array($this->choices
)) {
4474 $this->choices
= array();
4475 $days = array('sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday');
4476 foreach ($days as $day) {
4477 $this->choices
[$day] = get_string($day, 'calendar');
4484 * Special setting for backup auto destination.
4488 * @copyright 2014 Frédéric Massart - FMCorz.net
4489 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4491 class admin_setting_special_backup_auto_destination
extends admin_setting_configdirectory
{
4494 * Calls parent::__construct with specific arguments.
4496 public function __construct() {
4497 parent
::__construct('backup/backup_auto_destination', new lang_string('saveto'), new lang_string('backupsavetohelp'), '');
4501 * Check if the directory must be set, depending on backup/backup_auto_storage.
4503 * Note: backup/backup_auto_storage must be specified BEFORE this setting otherwise
4504 * there will be conflicts if this validation happens before the other one.
4506 * @param string $data Form data.
4507 * @return string Empty when no errors.
4509 public function write_setting($data) {
4510 $storage = (int) get_config('backup', 'backup_auto_storage');
4511 if ($storage !== 0) {
4512 if (empty($data) ||
!file_exists($data) ||
!is_dir($data) ||
!is_writable($data) ) {
4513 // The directory must exist and be writable.
4514 return get_string('backuperrorinvaliddestination');
4517 return parent
::write_setting($data);
4523 * Special debug setting
4525 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4527 class admin_setting_special_debug
extends admin_setting_configselect
{
4529 * Calls parent::__construct with specific arguments
4531 public function __construct() {
4532 parent
::__construct('debug', get_string('debug', 'admin'), get_string('configdebug', 'admin'), DEBUG_NONE
, NULL);
4536 * Load the available choices for the select box
4540 public function load_choices() {
4541 if (is_array($this->choices
)) {
4544 $this->choices
= array(DEBUG_NONE
=> get_string('debugnone', 'admin'),
4545 DEBUG_MINIMAL
=> get_string('debugminimal', 'admin'),
4546 DEBUG_NORMAL
=> get_string('debugnormal', 'admin'),
4547 DEBUG_ALL
=> get_string('debugall', 'admin'),
4548 DEBUG_DEVELOPER
=> get_string('debugdeveloper', 'admin'));
4555 * Special admin control
4557 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4559 class admin_setting_special_calendar_weekend
extends admin_setting
{
4561 * Calls parent::__construct with specific arguments
4563 public function __construct() {
4564 $name = 'calendar_weekend';
4565 $visiblename = get_string('calendar_weekend', 'admin');
4566 $description = get_string('helpweekenddays', 'admin');
4567 $default = array ('0', '6'); // Saturdays and Sundays
4568 parent
::__construct($name, $visiblename, $description, $default);
4572 * Gets the current settings as an array
4574 * @return mixed Null if none, else array of settings
4576 public function get_setting() {
4577 $result = $this->config_read($this->name
);
4578 if (is_null($result)) {
4581 if ($result === '') {
4584 $settings = array();
4585 for ($i=0; $i<7; $i++
) {
4586 if ($result & (1 << $i)) {
4594 * Save the new settings
4596 * @param array $data Array of new settings
4599 public function write_setting($data) {
4600 if (!is_array($data)) {
4603 unset($data['xxxxx']);
4605 foreach($data as $index) {
4606 $result |
= 1 << $index;
4608 return ($this->config_write($this->name
, $result) ?
'' : get_string('errorsetting', 'admin'));
4612 * Return XHTML to display the control
4614 * @param array $data array of selected days
4615 * @param string $query
4616 * @return string XHTML for display (field + wrapping div(s)
4618 public function output_html($data, $query='') {
4619 // The order matters very much because of the implied numeric keys
4620 $days = array('sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday');
4621 $return = '<table><thead><tr>';
4622 $return .= '<input type="hidden" name="'.$this->get_full_name().'[xxxxx]" value="1" />'; // something must be submitted even if nothing selected
4623 foreach($days as $index => $day) {
4624 $return .= '<td><label for="'.$this->get_id().$index.'">'.get_string($day, 'calendar').'</label></td>';
4626 $return .= '</tr></thead><tbody><tr>';
4627 foreach($days as $index => $day) {
4628 $return .= '<td><input type="checkbox" class="form-checkbox" id="'.$this->get_id().$index.'" name="'.$this->get_full_name().'[]" value="'.$index.'" '.(in_array("$index", $data) ?
'checked="checked"' : '').' /></td>';
4630 $return .= '</tr></tbody></table>';
4632 return format_admin_setting($this, $this->visiblename
, $return, $this->description
, false, '', NULL, $query);
4639 * Admin setting that allows a user to pick a behaviour.
4641 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4643 class admin_setting_question_behaviour
extends admin_setting_configselect
{
4645 * @param string $name name of config variable
4646 * @param string $visiblename display name
4647 * @param string $description description
4648 * @param string $default default.
4650 public function __construct($name, $visiblename, $description, $default) {
4651 parent
::__construct($name, $visiblename, $description, $default, NULL);
4655 * Load list of behaviours as choices
4656 * @return bool true => success, false => error.
4658 public function load_choices() {
4660 require_once($CFG->dirroot
. '/question/engine/lib.php');
4661 $this->choices
= question_engine
::get_behaviour_options('');
4668 * Admin setting that allows a user to pick appropriate roles for something.
4670 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4672 class admin_setting_pickroles
extends admin_setting_configmulticheckbox
{
4673 /** @var array Array of capabilities which identify roles */
4677 * @param string $name Name of config variable
4678 * @param string $visiblename Display name
4679 * @param string $description Description
4680 * @param array $types Array of archetypes which identify
4681 * roles that will be enabled by default.
4683 public function __construct($name, $visiblename, $description, $types) {
4684 parent
::__construct($name, $visiblename, $description, NULL, NULL);
4685 $this->types
= $types;
4689 * Load roles as choices
4691 * @return bool true=>success, false=>error
4693 public function load_choices() {
4695 if (during_initial_install()) {
4698 if (is_array($this->choices
)) {
4701 if ($roles = get_all_roles()) {
4702 $this->choices
= role_fix_names($roles, null, ROLENAME_ORIGINAL
, true);
4710 * Return the default setting for this control
4712 * @return array Array of default settings
4714 public function get_defaultsetting() {
4717 if (during_initial_install()) {
4721 foreach($this->types
as $archetype) {
4722 if ($caproles = get_archetype_roles($archetype)) {
4723 foreach ($caproles as $caprole) {
4724 $result[$caprole->id
] = 1;
4734 * Admin setting that is a list of installed filter plugins.
4736 * @copyright 2015 The Open University
4737 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4739 class admin_setting_pickfilters
extends admin_setting_configmulticheckbox
{
4744 * @param string $name unique ascii name, either 'mysetting' for settings
4745 * that in config, or 'myplugin/mysetting' for ones in config_plugins.
4746 * @param string $visiblename localised name
4747 * @param string $description localised long description
4748 * @param array $default the default. E.g. array('urltolink' => 1, 'emoticons' => 1)
4750 public function __construct($name, $visiblename, $description, $default) {
4751 if (empty($default)) {
4754 $this->load_choices();
4755 foreach ($default as $plugin) {
4756 if (!isset($this->choices
[$plugin])) {
4757 unset($default[$plugin]);
4760 parent
::__construct($name, $visiblename, $description, $default, null);
4763 public function load_choices() {
4764 if (is_array($this->choices
)) {
4767 $this->choices
= array();
4769 foreach (core_component
::get_plugin_list('filter') as $plugin => $unused) {
4770 $this->choices
[$plugin] = filter_get_name($plugin);
4778 * Text field with an advanced checkbox, that controls a additional $name.'_adv' setting.
4780 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4782 class admin_setting_configtext_with_advanced
extends admin_setting_configtext
{
4785 * @param string $name unique ascii name, either 'mysetting' for settings that in config, or 'myplugin/mysetting' for ones in config_plugins.
4786 * @param string $visiblename localised
4787 * @param string $description long localised info
4788 * @param array $defaultsetting ('value'=>string, '__construct'=>bool)
4789 * @param mixed $paramtype int means PARAM_XXX type, string is a allowed format in regex
4790 * @param int $size default field size
4792 public function __construct($name, $visiblename, $description, $defaultsetting, $paramtype=PARAM_RAW
, $size=null) {
4793 parent
::__construct($name, $visiblename, $description, $defaultsetting['value'], $paramtype, $size);
4794 $this->set_advanced_flag_options(admin_setting_flag
::ENABLED
, !empty($defaultsetting['adv']));
4800 * Checkbox with an advanced checkbox that controls an additional $name.'_adv' config setting.
4802 * @copyright 2009 Petr Skoda (http://skodak.org)
4803 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4805 class admin_setting_configcheckbox_with_advanced
extends admin_setting_configcheckbox
{
4809 * @param string $name unique ascii name, either 'mysetting' for settings that in config, or 'myplugin/mysetting' for ones in config_plugins.
4810 * @param string $visiblename localised
4811 * @param string $description long localised info
4812 * @param array $defaultsetting ('value'=>string, 'adv'=>bool)
4813 * @param string $yes value used when checked
4814 * @param string $no value used when not checked
4816 public function __construct($name, $visiblename, $description, $defaultsetting, $yes='1', $no='0') {
4817 parent
::__construct($name, $visiblename, $description, $defaultsetting['value'], $yes, $no);
4818 $this->set_advanced_flag_options(admin_setting_flag
::ENABLED
, !empty($defaultsetting['adv']));
4825 * Checkbox with an advanced checkbox that controls an additional $name.'_locked' config setting.
4827 * This is nearly a copy/paste of admin_setting_configcheckbox_with_adv
4829 * @copyright 2010 Sam Hemelryk
4830 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4832 class admin_setting_configcheckbox_with_lock
extends admin_setting_configcheckbox
{
4835 * @param string $name unique ascii name, either 'mysetting' for settings that in config, or 'myplugin/mysetting' for ones in config_plugins.
4836 * @param string $visiblename localised
4837 * @param string $description long localised info
4838 * @param array $defaultsetting ('value'=>string, 'locked'=>bool)
4839 * @param string $yes value used when checked
4840 * @param string $no value used when not checked
4842 public function __construct($name, $visiblename, $description, $defaultsetting, $yes='1', $no='0') {
4843 parent
::__construct($name, $visiblename, $description, $defaultsetting['value'], $yes, $no);
4844 $this->set_locked_flag_options(admin_setting_flag
::ENABLED
, !empty($defaultsetting['locked']));
4851 * Dropdown menu with an advanced checkbox, that controls a additional $name.'_adv' setting.
4853 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4855 class admin_setting_configselect_with_advanced
extends admin_setting_configselect
{
4857 * Calls parent::__construct with specific arguments
4859 public function __construct($name, $visiblename, $description, $defaultsetting, $choices) {
4860 parent
::__construct($name, $visiblename, $description, $defaultsetting['value'], $choices);
4861 $this->set_advanced_flag_options(admin_setting_flag
::ENABLED
, !empty($defaultsetting['adv']));
4868 * Graded roles in gradebook
4870 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4872 class admin_setting_special_gradebookroles
extends admin_setting_pickroles
{
4874 * Calls parent::__construct with specific arguments
4876 public function __construct() {
4877 parent
::__construct('gradebookroles', get_string('gradebookroles', 'admin'),
4878 get_string('configgradebookroles', 'admin'),
4886 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4888 class admin_setting_regradingcheckbox
extends admin_setting_configcheckbox
{
4890 * Saves the new settings passed in $data
4892 * @param string $data
4893 * @return mixed string or Array
4895 public function write_setting($data) {
4898 $oldvalue = $this->config_read($this->name
);
4899 $return = parent
::write_setting($data);
4900 $newvalue = $this->config_read($this->name
);
4902 if ($oldvalue !== $newvalue) {
4903 // force full regrading
4904 $DB->set_field('grade_items', 'needsupdate', 1, array('needsupdate'=>0));
4913 * Which roles to show on course description page
4915 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4917 class admin_setting_special_coursecontact
extends admin_setting_pickroles
{
4919 * Calls parent::__construct with specific arguments
4921 public function __construct() {
4922 parent
::__construct('coursecontact', get_string('coursecontact', 'admin'),
4923 get_string('coursecontact_desc', 'admin'),
4924 array('editingteacher'));
4925 $this->set_updatedcallback(create_function('',
4926 "cache::make('core', 'coursecontacts')->purge();"));
4933 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4935 class admin_setting_special_gradelimiting
extends admin_setting_configcheckbox
{
4937 * Calls parent::__construct with specific arguments
4939 function admin_setting_special_gradelimiting() {
4940 parent
::__construct('unlimitedgrades', get_string('unlimitedgrades', 'grades'),
4941 get_string('unlimitedgrades_help', 'grades'), '0', '1', '0');
4945 * Force site regrading
4947 function regrade_all() {
4949 require_once("$CFG->libdir/gradelib.php");
4950 grade_force_site_regrading();
4954 * Saves the new settings
4956 * @param mixed $data
4957 * @return string empty string or error message
4959 function write_setting($data) {
4960 $previous = $this->get_setting();
4962 if ($previous === null) {
4964 $this->regrade_all();
4967 if ($data != $previous) {
4968 $this->regrade_all();
4971 return ($this->config_write($this->name
, $data) ?
'' : get_string('errorsetting', 'admin'));
4977 * Special setting for $CFG->grade_minmaxtouse.
4980 * @copyright 2015 Frédéric Massart - FMCorz.net
4981 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4983 class admin_setting_special_grademinmaxtouse
extends admin_setting_configselect
{
4988 public function __construct() {
4989 parent
::__construct('grade_minmaxtouse', new lang_string('minmaxtouse', 'grades'),
4990 new lang_string('minmaxtouse_desc', 'grades'), GRADE_MIN_MAX_FROM_GRADE_ITEM
,
4992 GRADE_MIN_MAX_FROM_GRADE_ITEM
=> get_string('gradeitemminmax', 'grades'),
4993 GRADE_MIN_MAX_FROM_GRADE_GRADE
=> get_string('gradegrademinmax', 'grades')
4999 * Saves the new setting.
5001 * @param mixed $data
5002 * @return string empty string or error message
5004 function write_setting($data) {
5007 $previous = $this->get_setting();
5008 $result = parent
::write_setting($data);
5010 // If saved and the value has changed.
5011 if (empty($result) && $previous != $data) {
5012 require_once($CFG->libdir
. '/gradelib.php');
5013 grade_force_site_regrading();
5023 * Primary grade export plugin - has state tracking.
5025 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
5027 class admin_setting_special_gradeexport
extends admin_setting_configmulticheckbox
{
5029 * Calls parent::__construct with specific arguments
5031 public function __construct() {
5032 parent
::__construct('gradeexport', get_string('gradeexport', 'admin'),
5033 get_string('configgradeexport', 'admin'), array(), NULL);
5037 * Load the available choices for the multicheckbox
5039 * @return bool always returns true
5041 public function load_choices() {
5042 if (is_array($this->choices
)) {
5045 $this->choices
= array();
5047 if ($plugins = core_component
::get_plugin_list('gradeexport')) {
5048 foreach($plugins as $plugin => $unused) {
5049 $this->choices
[$plugin] = get_string('pluginname', 'gradeexport_'.$plugin);
5058 * A setting for setting the default grade point value. Must be an integer between 1 and $CFG->gradepointmax.
5060 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
5062 class admin_setting_special_gradepointdefault
extends admin_setting_configtext
{
5064 * Config gradepointmax constructor
5066 * @param string $name Overidden by "gradepointmax"
5067 * @param string $visiblename Overridden by "gradepointmax" language string.
5068 * @param string $description Overridden by "gradepointmax_help" language string.
5069 * @param string $defaultsetting Not used, overridden by 100.
5070 * @param mixed $paramtype Overridden by PARAM_INT.
5071 * @param int $size Overridden by 5.
5073 public function __construct($name = '', $visiblename = '', $description = '', $defaultsetting = '', $paramtype = PARAM_INT
, $size = 5) {
5074 $name = 'gradepointdefault';
5075 $visiblename = get_string('gradepointdefault', 'grades');
5076 $description = get_string('gradepointdefault_help', 'grades');
5077 $defaultsetting = 100;
5078 $paramtype = PARAM_INT
;
5080 parent
::__construct($name, $visiblename, $description, $defaultsetting, $paramtype, $size);
5084 * Validate data before storage
5085 * @param string $data The submitted data
5086 * @return bool|string true if ok, string if error found
5088 public function validate($data) {
5090 if (((string)(int)$data === (string)$data && $data > 0 && $data <= $CFG->gradepointmax
)) {
5093 return get_string('gradepointdefault_validateerror', 'grades');
5100 * A setting for setting the maximum grade value. Must be an integer between 1 and 10000.
5102 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
5104 class admin_setting_special_gradepointmax
extends admin_setting_configtext
{
5107 * Config gradepointmax constructor
5109 * @param string $name Overidden by "gradepointmax"
5110 * @param string $visiblename Overridden by "gradepointmax" language string.
5111 * @param string $description Overridden by "gradepointmax_help" language string.
5112 * @param string $defaultsetting Not used, overridden by 100.
5113 * @param mixed $paramtype Overridden by PARAM_INT.
5114 * @param int $size Overridden by 5.
5116 public function __construct($name = '', $visiblename = '', $description = '', $defaultsetting = '', $paramtype = PARAM_INT
, $size = 5) {
5117 $name = 'gradepointmax';
5118 $visiblename = get_string('gradepointmax', 'grades');
5119 $description = get_string('gradepointmax_help', 'grades');
5120 $defaultsetting = 100;
5121 $paramtype = PARAM_INT
;
5123 parent
::__construct($name, $visiblename, $description, $defaultsetting, $paramtype, $size);
5127 * Save the selected setting
5129 * @param string $data The selected site
5130 * @return string empty string or error message
5132 public function write_setting($data) {
5134 $data = (int)$this->defaultsetting
;
5138 return parent
::write_setting($data);
5142 * Validate data before storage
5143 * @param string $data The submitted data
5144 * @return bool|string true if ok, string if error found
5146 public function validate($data) {
5147 if (((string)(int)$data === (string)$data && $data > 0 && $data <= 10000)) {
5150 return get_string('gradepointmax_validateerror', 'grades');
5155 * Return an XHTML string for the setting
5156 * @param array $data Associative array of value=>xx, forced=>xx, adv=>xx
5157 * @param string $query search query to be highlighted
5158 * @return string XHTML to display control
5160 public function output_html($data, $query = '') {
5161 $default = $this->get_defaultsetting();
5165 'size' => $this->size
,
5166 'id' => $this->get_id(),
5167 'name' => $this->get_full_name(),
5168 'value' => s($data),
5171 $input = html_writer
::empty_tag('input', $attr);
5173 $attr = array('class' => 'form-text defaultsnext');
5174 $div = html_writer
::tag('div', $input, $attr);
5175 return format_admin_setting($this, $this->visiblename
, $div, $this->description
, true, '', $default, $query);
5181 * Grade category settings
5183 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
5185 class admin_setting_gradecat_combo
extends admin_setting
{
5186 /** @var array Array of choices */
5190 * Sets choices and calls parent::__construct with passed arguments
5191 * @param string $name
5192 * @param string $visiblename
5193 * @param string $description
5194 * @param mixed $defaultsetting string or array depending on implementation
5195 * @param array $choices An array of choices for the control
5197 public function __construct($name, $visiblename, $description, $defaultsetting, $choices) {
5198 $this->choices
= $choices;
5199 parent
::__construct($name, $visiblename, $description, $defaultsetting);
5203 * Return the current setting(s) array
5205 * @return array Array of value=>xx, forced=>xx, adv=>xx
5207 public function get_setting() {
5210 $value = $this->config_read($this->name
);
5211 $flag = $this->config_read($this->name
.'_flag');
5213 if (is_null($value) or is_null($flag)) {
5218 $forced = (boolean
)(1 & $flag); // first bit
5219 $adv = (boolean
)(2 & $flag); // second bit
5221 return array('value' => $value, 'forced' => $forced, 'adv' => $adv);
5225 * Save the new settings passed in $data
5227 * @todo Add vartype handling to ensure $data is array
5228 * @param array $data Associative array of value=>xx, forced=>xx, adv=>xx
5229 * @return string empty or error message
5231 public function write_setting($data) {
5234 $value = $data['value'];
5235 $forced = empty($data['forced']) ?
0 : 1;
5236 $adv = empty($data['adv']) ?
0 : 2;
5237 $flag = ($forced |
$adv); //bitwise or
5239 if (!in_array($value, array_keys($this->choices
))) {
5240 return 'Error setting ';
5243 $oldvalue = $this->config_read($this->name
);
5244 $oldflag = (int)$this->config_read($this->name
.'_flag');
5245 $oldforced = (1 & $oldflag); // first bit
5247 $result1 = $this->config_write($this->name
, $value);
5248 $result2 = $this->config_write($this->name
.'_flag', $flag);
5250 // force regrade if needed
5251 if ($oldforced != $forced or ($forced and $value != $oldvalue)) {
5252 require_once($CFG->libdir
.'/gradelib.php');
5253 grade_category
::updated_forced_settings();
5256 if ($result1 and $result2) {
5259 return get_string('errorsetting', 'admin');
5264 * Return XHTML to display the field and wrapping div
5266 * @todo Add vartype handling to ensure $data is array
5267 * @param array $data Associative array of value=>xx, forced=>xx, adv=>xx
5268 * @param string $query
5269 * @return string XHTML to display control
5271 public function output_html($data, $query='') {
5272 $value = $data['value'];
5273 $forced = !empty($data['forced']);
5274 $adv = !empty($data['adv']);
5276 $default = $this->get_defaultsetting();
5277 if (!is_null($default)) {
5278 $defaultinfo = array();
5279 if (isset($this->choices
[$default['value']])) {
5280 $defaultinfo[] = $this->choices
[$default['value']];
5282 if (!empty($default['forced'])) {
5283 $defaultinfo[] = get_string('force');
5285 if (!empty($default['adv'])) {
5286 $defaultinfo[] = get_string('advanced');
5288 $defaultinfo = implode(', ', $defaultinfo);
5291 $defaultinfo = NULL;
5295 $return = '<div class="form-group">';
5296 $return .= '<select class="form-select" id="'.$this->get_id().'" name="'.$this->get_full_name().'[value]">';
5297 foreach ($this->choices
as $key => $val) {
5298 // the string cast is needed because key may be integer - 0 is equal to most strings!
5299 $return .= '<option value="'.$key.'"'.((string)$key==$value ?
' selected="selected"' : '').'>'.$val.'</option>';
5301 $return .= '</select>';
5302 $return .= '<input type="checkbox" class="form-checkbox" id="'.$this->get_id().'force" name="'.$this->get_full_name().'[forced]" value="1" '.($forced ?
'checked="checked"' : '').' />'
5303 .'<label for="'.$this->get_id().'force">'.get_string('force').'</label>';
5304 $return .= '<input type="checkbox" class="form-checkbox" id="'.$this->get_id().'adv" name="'.$this->get_full_name().'[adv]" value="1" '.($adv ?
'checked="checked"' : '').' />'
5305 .'<label for="'.$this->get_id().'adv">'.get_string('advanced').'</label>';
5306 $return .= '</div>';
5308 return format_admin_setting($this, $this->visiblename
, $return, $this->description
, true, '', $defaultinfo, $query);
5314 * Selection of grade report in user profiles
5316 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
5318 class admin_setting_grade_profilereport
extends admin_setting_configselect
{
5320 * Calls parent::__construct with specific arguments
5322 public function __construct() {
5323 parent
::__construct('grade_profilereport', get_string('profilereport', 'grades'), get_string('profilereport_help', 'grades'), 'user', null);
5327 * Loads an array of choices for the configselect control
5329 * @return bool always return true
5331 public function load_choices() {
5332 if (is_array($this->choices
)) {
5335 $this->choices
= array();
5338 require_once($CFG->libdir
.'/gradelib.php');
5340 foreach (core_component
::get_plugin_list('gradereport') as $plugin => $plugindir) {
5341 if (file_exists($plugindir.'/lib.php')) {
5342 require_once($plugindir.'/lib.php');
5343 $functionname = 'grade_report_'.$plugin.'_profilereport';
5344 if (function_exists($functionname)) {
5345 $this->choices
[$plugin] = get_string('pluginname', 'gradereport_'.$plugin);
5354 * Provides a selection of grade reports to be used for "grades".
5356 * @copyright 2015 Adrian Greeve <adrian@moodle.com>
5357 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
5359 class admin_setting_my_grades_report
extends admin_setting_configselect
{
5362 * Calls parent::__construct with specific arguments.
5364 public function __construct() {
5365 parent
::__construct('grade_mygrades_report', new lang_string('mygrades', 'grades'),
5366 new lang_string('mygrades_desc', 'grades'), 'overview', null);
5370 * Loads an array of choices for the configselect control.
5372 * @return bool always returns true.
5374 public function load_choices() {
5375 global $CFG; // Remove this line and behold the horror of behat test failures!
5376 $this->choices
= array();
5377 foreach (core_component
::get_plugin_list('gradereport') as $plugin => $plugindir) {
5378 if (file_exists($plugindir . '/lib.php')) {
5379 require_once($plugindir . '/lib.php');
5380 // Check to see if the class exists. Check the correct plugin convention first.
5381 if (class_exists('gradereport_' . $plugin)) {
5382 $classname = 'gradereport_' . $plugin;
5383 } else if (class_exists('grade_report_' . $plugin)) {
5384 // We are using the old plugin naming convention.
5385 $classname = 'grade_report_' . $plugin;
5389 if ($classname::supports_mygrades()) {
5390 $this->choices
[$plugin] = get_string('pluginname', 'gradereport_' . $plugin);
5394 // Add an option to specify an external url.
5395 $this->choices
['external'] = get_string('externalurl', 'grades');
5401 * Special class for register auth selection
5403 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
5405 class admin_setting_special_registerauth
extends admin_setting_configselect
{
5407 * Calls parent::__construct with specific arguments
5409 public function __construct() {
5410 parent
::__construct('registerauth', get_string('selfregistration', 'auth'), get_string('selfregistration_help', 'auth'), '', null);
5414 * Returns the default option
5416 * @return string empty or default option
5418 public function get_defaultsetting() {
5419 $this->load_choices();
5420 $defaultsetting = parent
::get_defaultsetting();
5421 if (array_key_exists($defaultsetting, $this->choices
)) {
5422 return $defaultsetting;
5429 * Loads the possible choices for the array
5431 * @return bool always returns true
5433 public function load_choices() {
5436 if (is_array($this->choices
)) {
5439 $this->choices
= array();
5440 $this->choices
[''] = get_string('disable');
5442 $authsenabled = get_enabled_auth_plugins(true);
5444 foreach ($authsenabled as $auth) {
5445 $authplugin = get_auth_plugin($auth);
5446 if (!$authplugin->can_signup()) {
5449 // Get the auth title (from core or own auth lang files)
5450 $authtitle = $authplugin->get_title();
5451 $this->choices
[$auth] = $authtitle;
5459 * General plugins manager
5461 class admin_page_pluginsoverview
extends admin_externalpage
{
5464 * Sets basic information about the external page
5466 public function __construct() {
5468 parent
::__construct('pluginsoverview', get_string('pluginsoverview', 'core_admin'),
5469 "$CFG->wwwroot/$CFG->admin/plugins.php");
5474 * Module manage page
5476 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
5478 class admin_page_managemods
extends admin_externalpage
{
5480 * Calls parent::__construct with specific arguments
5482 public function __construct() {
5484 parent
::__construct('managemodules', get_string('modsettings', 'admin'), "$CFG->wwwroot/$CFG->admin/modules.php");
5488 * Try to find the specified module
5490 * @param string $query The module to search for
5493 public function search($query) {
5495 if ($result = parent
::search($query)) {
5500 if ($modules = $DB->get_records('modules')) {
5501 foreach ($modules as $module) {
5502 if (!file_exists("$CFG->dirroot/mod/$module->name/lib.php")) {
5505 if (strpos($module->name
, $query) !== false) {
5509 $strmodulename = get_string('modulename', $module->name
);
5510 if (strpos(core_text
::strtolower($strmodulename), $query) !== false) {
5517 $result = new stdClass();
5518 $result->page
= $this;
5519 $result->settings
= array();
5520 return array($this->name
=> $result);
5529 * Special class for enrol plugins management.
5531 * @copyright 2010 Petr Skoda {@link http://skodak.org}
5532 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
5534 class admin_setting_manageenrols
extends admin_setting
{
5536 * Calls parent::__construct with specific arguments
5538 public function __construct() {
5539 $this->nosave
= true;
5540 parent
::__construct('enrolsui', get_string('manageenrols', 'enrol'), '', '');
5544 * Always returns true, does nothing
5548 public function get_setting() {
5553 * Always returns true, does nothing
5557 public function get_defaultsetting() {
5562 * Always returns '', does not write anything
5564 * @return string Always returns ''
5566 public function write_setting($data) {
5567 // do not write any setting
5572 * Checks if $query is one of the available enrol plugins
5574 * @param string $query The string to search for
5575 * @return bool Returns true if found, false if not
5577 public function is_related($query) {
5578 if (parent
::is_related($query)) {
5582 $query = core_text
::strtolower($query);
5583 $enrols = enrol_get_plugins(false);
5584 foreach ($enrols as $name=>$enrol) {
5585 $localised = get_string('pluginname', 'enrol_'.$name);
5586 if (strpos(core_text
::strtolower($name), $query) !== false) {
5589 if (strpos(core_text
::strtolower($localised), $query) !== false) {
5597 * Builds the XHTML to display the control
5599 * @param string $data Unused
5600 * @param string $query
5603 public function output_html($data, $query='') {
5604 global $CFG, $OUTPUT, $DB, $PAGE;
5607 $strup = get_string('up');
5608 $strdown = get_string('down');
5609 $strsettings = get_string('settings');
5610 $strenable = get_string('enable');
5611 $strdisable = get_string('disable');
5612 $struninstall = get_string('uninstallplugin', 'core_admin');
5613 $strusage = get_string('enrolusage', 'enrol');
5614 $strversion = get_string('version');
5615 $strtest = get_string('testsettings', 'core_enrol');
5617 $pluginmanager = core_plugin_manager
::instance();
5619 $enrols_available = enrol_get_plugins(false);
5620 $active_enrols = enrol_get_plugins(true);
5622 $allenrols = array();
5623 foreach ($active_enrols as $key=>$enrol) {
5624 $allenrols[$key] = true;
5626 foreach ($enrols_available as $key=>$enrol) {
5627 $allenrols[$key] = true;
5629 // Now find all borked plugins and at least allow then to uninstall.
5630 $condidates = $DB->get_fieldset_sql("SELECT DISTINCT enrol FROM {enrol}");
5631 foreach ($condidates as $candidate) {
5632 if (empty($allenrols[$candidate])) {
5633 $allenrols[$candidate] = true;
5637 $return = $OUTPUT->heading(get_string('actenrolshhdr', 'enrol'), 3, 'main', true);
5638 $return .= $OUTPUT->box_start('generalbox enrolsui');
5640 $table = new html_table();
5641 $table->head
= array(get_string('name'), $strusage, $strversion, $strenable, $strup.'/'.$strdown, $strsettings, $strtest, $struninstall);
5642 $table->colclasses
= array('leftalign', 'centeralign', 'centeralign', 'centeralign', 'centeralign', 'centeralign', 'centeralign', 'centeralign');
5643 $table->id
= 'courseenrolmentplugins';
5644 $table->attributes
['class'] = 'admintable generaltable';
5645 $table->data
= array();
5647 // Iterate through enrol plugins and add to the display table.
5649 $enrolcount = count($active_enrols);
5650 $url = new moodle_url('/admin/enrol.php', array('sesskey'=>sesskey()));
5652 foreach($allenrols as $enrol => $unused) {
5653 $plugininfo = $pluginmanager->get_plugin_info('enrol_'.$enrol);
5654 $version = get_config('enrol_'.$enrol, 'version');
5655 if ($version === false) {
5659 if (get_string_manager()->string_exists('pluginname', 'enrol_'.$enrol)) {
5660 $name = get_string('pluginname', 'enrol_'.$enrol);
5665 $ci = $DB->count_records('enrol', array('enrol'=>$enrol));
5666 $cp = $DB->count_records_select('user_enrolments', "enrolid IN (SELECT id FROM {enrol} WHERE enrol = ?)", array($enrol));
5667 $usage = "$ci / $cp";
5671 if (isset($active_enrols[$enrol])) {
5672 $aurl = new moodle_url($url, array('action'=>'disable', 'enrol'=>$enrol));
5673 $hideshow = "<a href=\"$aurl\">";
5674 $hideshow .= "<img src=\"" . $OUTPUT->pix_url('t/hide') . "\" class=\"iconsmall\" alt=\"$strdisable\" /></a>";
5676 $displayname = $name;
5677 } else if (isset($enrols_available[$enrol])) {
5678 $aurl = new moodle_url($url, array('action'=>'enable', 'enrol'=>$enrol));
5679 $hideshow = "<a href=\"$aurl\">";
5680 $hideshow .= "<img src=\"" . $OUTPUT->pix_url('t/show') . "\" class=\"iconsmall\" alt=\"$strenable\" /></a>";
5682 $displayname = $name;
5683 $class = 'dimmed_text';
5687 $displayname = '<span class="notifyproblem">'.$name.'</span>';
5689 if ($PAGE->theme
->resolve_image_location('icon', 'enrol_' . $name, false)) {
5690 $icon = $OUTPUT->pix_icon('icon', '', 'enrol_' . $name, array('class' => 'icon pluginicon'));
5692 $icon = $OUTPUT->pix_icon('spacer', '', 'moodle', array('class' => 'icon pluginicon noicon'));
5695 // Up/down link (only if enrol is enabled).
5698 if ($updowncount > 1) {
5699 $aurl = new moodle_url($url, array('action'=>'up', 'enrol'=>$enrol));
5700 $updown .= "<a href=\"$aurl\">";
5701 $updown .= "<img src=\"" . $OUTPUT->pix_url('t/up') . "\" alt=\"$strup\" class=\"iconsmall\" /></a> ";
5703 $updown .= "<img src=\"" . $OUTPUT->pix_url('spacer') . "\" class=\"iconsmall\" alt=\"\" /> ";
5705 if ($updowncount < $enrolcount) {
5706 $aurl = new moodle_url($url, array('action'=>'down', 'enrol'=>$enrol));
5707 $updown .= "<a href=\"$aurl\">";
5708 $updown .= "<img src=\"" . $OUTPUT->pix_url('t/down') . "\" alt=\"$strdown\" class=\"iconsmall\" /></a>";
5710 $updown .= "<img src=\"" . $OUTPUT->pix_url('spacer') . "\" class=\"iconsmall\" alt=\"\" />";
5715 // Add settings link.
5718 } else if ($surl = $plugininfo->get_settings_url()) {
5719 $settings = html_writer
::link($surl, $strsettings);
5724 // Add uninstall info.
5726 if ($uninstallurl = core_plugin_manager
::instance()->get_uninstall_url('enrol_'.$enrol, 'manage')) {
5727 $uninstall = html_writer
::link($uninstallurl, $struninstall);
5731 if (!empty($enrols_available[$enrol]) and method_exists($enrols_available[$enrol], 'test_settings')) {
5732 $testsettingsurl = new moodle_url('/enrol/test_settings.php', array('enrol'=>$enrol, 'sesskey'=>sesskey()));
5733 $test = html_writer
::link($testsettingsurl, $strtest);
5736 // Add a row to the table.
5737 $row = new html_table_row(array($icon.$displayname, $usage, $version, $hideshow, $updown, $settings, $test, $uninstall));
5739 $row->attributes
['class'] = $class;
5741 $table->data
[] = $row;
5743 $printed[$enrol] = true;
5746 $return .= html_writer
::table($table);
5747 $return .= get_string('configenrolplugins', 'enrol').'<br />'.get_string('tablenosave', 'admin');
5748 $return .= $OUTPUT->box_end();
5749 return highlight($query, $return);
5755 * Blocks manage page
5757 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
5759 class admin_page_manageblocks
extends admin_externalpage
{
5761 * Calls parent::__construct with specific arguments
5763 public function __construct() {
5765 parent
::__construct('manageblocks', get_string('blocksettings', 'admin'), "$CFG->wwwroot/$CFG->admin/blocks.php");
5769 * Search for a specific block
5771 * @param string $query The string to search for
5774 public function search($query) {
5776 if ($result = parent
::search($query)) {
5781 if ($blocks = $DB->get_records('block')) {
5782 foreach ($blocks as $block) {
5783 if (!file_exists("$CFG->dirroot/blocks/$block->name/")) {
5786 if (strpos($block->name
, $query) !== false) {
5790 $strblockname = get_string('pluginname', 'block_'.$block->name
);
5791 if (strpos(core_text
::strtolower($strblockname), $query) !== false) {
5798 $result = new stdClass();
5799 $result->page
= $this;
5800 $result->settings
= array();
5801 return array($this->name
=> $result);
5809 * Message outputs configuration
5811 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
5813 class admin_page_managemessageoutputs
extends admin_externalpage
{
5815 * Calls parent::__construct with specific arguments
5817 public function __construct() {
5819 parent
::__construct('managemessageoutputs', get_string('managemessageoutputs', 'message'), new moodle_url('/admin/message.php'));
5823 * Search for a specific message processor
5825 * @param string $query The string to search for
5828 public function search($query) {
5830 if ($result = parent
::search($query)) {
5835 if ($processors = get_message_processors()) {
5836 foreach ($processors as $processor) {
5837 if (!$processor->available
) {
5840 if (strpos($processor->name
, $query) !== false) {
5844 $strprocessorname = get_string('pluginname', 'message_'.$processor->name
);
5845 if (strpos(core_text
::strtolower($strprocessorname), $query) !== false) {
5852 $result = new stdClass();
5853 $result->page
= $this;
5854 $result->settings
= array();
5855 return array($this->name
=> $result);
5863 * Default message outputs configuration
5865 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
5867 class admin_page_defaultmessageoutputs
extends admin_page_managemessageoutputs
{
5869 * Calls parent::__construct with specific arguments
5871 public function __construct() {
5873 admin_externalpage
::__construct('defaultmessageoutputs', get_string('defaultmessageoutputs', 'message'), new moodle_url('/message/defaultoutputs.php'));
5879 * Manage question behaviours page
5881 * @copyright 2011 The Open University
5882 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
5884 class admin_page_manageqbehaviours
extends admin_externalpage
{
5888 public function __construct() {
5890 parent
::__construct('manageqbehaviours', get_string('manageqbehaviours', 'admin'),
5891 new moodle_url('/admin/qbehaviours.php'));
5895 * Search question behaviours for the specified string
5897 * @param string $query The string to search for in question behaviours
5900 public function search($query) {
5902 if ($result = parent
::search($query)) {
5907 require_once($CFG->dirroot
. '/question/engine/lib.php');
5908 foreach (core_component
::get_plugin_list('qbehaviour') as $behaviour => $notused) {
5909 if (strpos(core_text
::strtolower(question_engine
::get_behaviour_name($behaviour)),
5910 $query) !== false) {
5916 $result = new stdClass();
5917 $result->page
= $this;
5918 $result->settings
= array();
5919 return array($this->name
=> $result);
5928 * Question type manage page
5930 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
5932 class admin_page_manageqtypes
extends admin_externalpage
{
5934 * Calls parent::__construct with specific arguments
5936 public function __construct() {
5938 parent
::__construct('manageqtypes', get_string('manageqtypes', 'admin'),
5939 new moodle_url('/admin/qtypes.php'));
5943 * Search question types for the specified string
5945 * @param string $query The string to search for in question types
5948 public function search($query) {
5950 if ($result = parent
::search($query)) {
5955 require_once($CFG->dirroot
. '/question/engine/bank.php');
5956 foreach (question_bank
::get_all_qtypes() as $qtype) {
5957 if (strpos(core_text
::strtolower($qtype->local_name()), $query) !== false) {
5963 $result = new stdClass();
5964 $result->page
= $this;
5965 $result->settings
= array();
5966 return array($this->name
=> $result);
5974 class admin_page_manageportfolios
extends admin_externalpage
{
5976 * Calls parent::__construct with specific arguments
5978 public function __construct() {
5980 parent
::__construct('manageportfolios', get_string('manageportfolios', 'portfolio'),
5981 "$CFG->wwwroot/$CFG->admin/portfolio.php");
5985 * Searches page for the specified string.
5986 * @param string $query The string to search for
5987 * @return bool True if it is found on this page
5989 public function search($query) {
5991 if ($result = parent
::search($query)) {
5996 $portfolios = core_component
::get_plugin_list('portfolio');
5997 foreach ($portfolios as $p => $dir) {
5998 if (strpos($p, $query) !== false) {
6004 foreach (portfolio_instances(false, false) as $instance) {
6005 $title = $instance->get('name');
6006 if (strpos(core_text
::strtolower($title), $query) !== false) {
6014 $result = new stdClass();
6015 $result->page
= $this;
6016 $result->settings
= array();
6017 return array($this->name
=> $result);
6025 class admin_page_managerepositories
extends admin_externalpage
{
6027 * Calls parent::__construct with specific arguments
6029 public function __construct() {
6031 parent
::__construct('managerepositories', get_string('manage',
6032 'repository'), "$CFG->wwwroot/$CFG->admin/repository.php");
6036 * Searches page for the specified string.
6037 * @param string $query The string to search for
6038 * @return bool True if it is found on this page
6040 public function search($query) {
6042 if ($result = parent
::search($query)) {
6047 $repositories= core_component
::get_plugin_list('repository');
6048 foreach ($repositories as $p => $dir) {
6049 if (strpos($p, $query) !== false) {
6055 foreach (repository
::get_types() as $instance) {
6056 $title = $instance->get_typename();
6057 if (strpos(core_text
::strtolower($title), $query) !== false) {
6065 $result = new stdClass();
6066 $result->page
= $this;
6067 $result->settings
= array();
6068 return array($this->name
=> $result);
6077 * Special class for authentication administration.
6079 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
6081 class admin_setting_manageauths
extends admin_setting
{
6083 * Calls parent::__construct with specific arguments
6085 public function __construct() {
6086 $this->nosave
= true;
6087 parent
::__construct('authsui', get_string('authsettings', 'admin'), '', '');
6091 * Always returns true
6095 public function get_setting() {
6100 * Always returns true
6104 public function get_defaultsetting() {
6109 * Always returns '' and doesn't write anything
6111 * @return string Always returns ''
6113 public function write_setting($data) {
6114 // do not write any setting
6119 * Search to find if Query is related to auth plugin
6121 * @param string $query The string to search for
6122 * @return bool true for related false for not
6124 public function is_related($query) {
6125 if (parent
::is_related($query)) {
6129 $authsavailable = core_component
::get_plugin_list('auth');
6130 foreach ($authsavailable as $auth => $dir) {
6131 if (strpos($auth, $query) !== false) {
6134 $authplugin = get_auth_plugin($auth);
6135 $authtitle = $authplugin->get_title();
6136 if (strpos(core_text
::strtolower($authtitle), $query) !== false) {
6144 * Return XHTML to display control
6146 * @param mixed $data Unused
6147 * @param string $query
6148 * @return string highlight
6150 public function output_html($data, $query='') {
6151 global $CFG, $OUTPUT, $DB;
6154 $txt = get_strings(array('authenticationplugins', 'users', 'administration',
6155 'settings', 'edit', 'name', 'enable', 'disable',
6156 'up', 'down', 'none', 'users'));
6157 $txt->updown
= "$txt->up/$txt->down";
6158 $txt->uninstall
= get_string('uninstallplugin', 'core_admin');
6159 $txt->testsettings
= get_string('testsettings', 'core_auth');
6161 $authsavailable = core_component
::get_plugin_list('auth');
6162 get_enabled_auth_plugins(true); // fix the list of enabled auths
6163 if (empty($CFG->auth
)) {
6164 $authsenabled = array();
6166 $authsenabled = explode(',', $CFG->auth
);
6169 // construct the display array, with enabled auth plugins at the top, in order
6170 $displayauths = array();
6171 $registrationauths = array();
6172 $registrationauths[''] = $txt->disable
;
6173 $authplugins = array();
6174 foreach ($authsenabled as $auth) {
6175 $authplugin = get_auth_plugin($auth);
6176 $authplugins[$auth] = $authplugin;
6177 /// Get the auth title (from core or own auth lang files)
6178 $authtitle = $authplugin->get_title();
6180 $displayauths[$auth] = $authtitle;
6181 if ($authplugin->can_signup()) {
6182 $registrationauths[$auth] = $authtitle;
6186 foreach ($authsavailable as $auth => $dir) {
6187 if (array_key_exists($auth, $displayauths)) {
6188 continue; //already in the list
6190 $authplugin = get_auth_plugin($auth);
6191 $authplugins[$auth] = $authplugin;
6192 /// Get the auth title (from core or own auth lang files)
6193 $authtitle = $authplugin->get_title();
6195 $displayauths[$auth] = $authtitle;
6196 if ($authplugin->can_signup()) {
6197 $registrationauths[$auth] = $authtitle;
6201 $return = $OUTPUT->heading(get_string('actauthhdr', 'auth'), 3, 'main');
6202 $return .= $OUTPUT->box_start('generalbox authsui');
6204 $table = new html_table();
6205 $table->head
= array($txt->name
, $txt->users
, $txt->enable
, $txt->updown
, $txt->settings
, $txt->testsettings
, $txt->uninstall
);
6206 $table->colclasses
= array('leftalign', 'centeralign', 'centeralign', 'centeralign', 'centeralign', 'centeralign', 'centeralign');
6207 $table->data
= array();
6208 $table->attributes
['class'] = 'admintable generaltable';
6209 $table->id
= 'manageauthtable';
6211 //add always enabled plugins first
6212 $displayname = $displayauths['manual'];
6213 $settings = "<a href=\"auth_config.php?auth=manual\">{$txt->settings}</a>";
6214 //$settings = "<a href=\"settings.php?section=authsettingmanual\">{$txt->settings}</a>";
6215 $usercount = $DB->count_records('user', array('auth'=>'manual', 'deleted'=>0));
6216 $table->data
[] = array($displayname, $usercount, '', '', $settings, '', '');
6217 $displayname = $displayauths['nologin'];
6218 $settings = "<a href=\"auth_config.php?auth=nologin\">{$txt->settings}</a>";
6219 $usercount = $DB->count_records('user', array('auth'=>'nologin', 'deleted'=>0));
6220 $table->data
[] = array($displayname, $usercount, '', '', $settings, '', '');
6223 // iterate through auth plugins and add to the display table
6225 $authcount = count($authsenabled);
6226 $url = "auth.php?sesskey=" . sesskey();
6227 foreach ($displayauths as $auth => $name) {
6228 if ($auth == 'manual' or $auth == 'nologin') {
6233 if (in_array($auth, $authsenabled)) {
6234 $hideshow = "<a href=\"$url&action=disable&auth=$auth\">";
6235 $hideshow .= "<img src=\"" . $OUTPUT->pix_url('t/hide') . "\" class=\"iconsmall\" alt=\"disable\" /></a>";
6236 // $hideshow = "<a href=\"$url&action=disable&auth=$auth\"><input type=\"checkbox\" checked /></a>";
6238 $displayname = $name;
6241 $hideshow = "<a href=\"$url&action=enable&auth=$auth\">";
6242 $hideshow .= "<img src=\"" . $OUTPUT->pix_url('t/show') . "\" class=\"iconsmall\" alt=\"enable\" /></a>";
6243 // $hideshow = "<a href=\"$url&action=enable&auth=$auth\"><input type=\"checkbox\" /></a>";
6245 $displayname = $name;
6246 $class = 'dimmed_text';
6249 $usercount = $DB->count_records('user', array('auth'=>$auth, 'deleted'=>0));
6251 // up/down link (only if auth is enabled)
6254 if ($updowncount > 1) {
6255 $updown .= "<a href=\"$url&action=up&auth=$auth\">";
6256 $updown .= "<img src=\"" . $OUTPUT->pix_url('t/up') . "\" alt=\"up\" class=\"iconsmall\" /></a> ";
6259 $updown .= "<img src=\"" . $OUTPUT->pix_url('spacer') . "\" class=\"iconsmall\" alt=\"\" /> ";
6261 if ($updowncount < $authcount) {
6262 $updown .= "<a href=\"$url&action=down&auth=$auth\">";
6263 $updown .= "<img src=\"" . $OUTPUT->pix_url('t/down') . "\" alt=\"down\" class=\"iconsmall\" /></a>";
6266 $updown .= "<img src=\"" . $OUTPUT->pix_url('spacer') . "\" class=\"iconsmall\" alt=\"\" />";
6272 if (file_exists($CFG->dirroot
.'/auth/'.$auth.'/settings.php')) {
6273 $settings = "<a href=\"settings.php?section=authsetting$auth\">{$txt->settings}</a>";
6275 $settings = "<a href=\"auth_config.php?auth=$auth\">{$txt->settings}</a>";
6280 if ($uninstallurl = core_plugin_manager
::instance()->get_uninstall_url('auth_'.$auth, 'manage')) {
6281 $uninstall = html_writer
::link($uninstallurl, $txt->uninstall
);
6285 if (!empty($authplugins[$auth]) and method_exists($authplugins[$auth], 'test_settings')) {
6286 $testurl = new moodle_url('/auth/test_settings.php', array('auth'=>$auth, 'sesskey'=>sesskey()));
6287 $test = html_writer
::link($testurl, $txt->testsettings
);
6290 // Add a row to the table.
6291 $row = new html_table_row(array($displayname, $usercount, $hideshow, $updown, $settings, $test, $uninstall));
6293 $row->attributes
['class'] = $class;
6295 $table->data
[] = $row;
6297 $return .= html_writer
::table($table);
6298 $return .= get_string('configauthenticationplugins', 'admin').'<br />'.get_string('tablenosave', 'filters');
6299 $return .= $OUTPUT->box_end();
6300 return highlight($query, $return);
6306 * Special class for authentication administration.
6308 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
6310 class admin_setting_manageeditors
extends admin_setting
{
6312 * Calls parent::__construct with specific arguments
6314 public function __construct() {
6315 $this->nosave
= true;
6316 parent
::__construct('editorsui', get_string('editorsettings', 'editor'), '', '');
6320 * Always returns true, does nothing
6324 public function get_setting() {
6329 * Always returns true, does nothing
6333 public function get_defaultsetting() {
6338 * Always returns '', does not write anything
6340 * @return string Always returns ''
6342 public function write_setting($data) {
6343 // do not write any setting
6348 * Checks if $query is one of the available editors
6350 * @param string $query The string to search for
6351 * @return bool Returns true if found, false if not
6353 public function is_related($query) {
6354 if (parent
::is_related($query)) {
6358 $editors_available = editors_get_available();
6359 foreach ($editors_available as $editor=>$editorstr) {
6360 if (strpos($editor, $query) !== false) {
6363 if (strpos(core_text
::strtolower($editorstr), $query) !== false) {
6371 * Builds the XHTML to display the control
6373 * @param string $data Unused
6374 * @param string $query
6377 public function output_html($data, $query='') {
6378 global $CFG, $OUTPUT;
6381 $txt = get_strings(array('administration', 'settings', 'edit', 'name', 'enable', 'disable',
6382 'up', 'down', 'none'));
6383 $struninstall = get_string('uninstallplugin', 'core_admin');
6385 $txt->updown
= "$txt->up/$txt->down";
6387 $editors_available = editors_get_available();
6388 $active_editors = explode(',', $CFG->texteditors
);
6390 $active_editors = array_reverse($active_editors);
6391 foreach ($active_editors as $key=>$editor) {
6392 if (empty($editors_available[$editor])) {
6393 unset($active_editors[$key]);
6395 $name = $editors_available[$editor];
6396 unset($editors_available[$editor]);
6397 $editors_available[$editor] = $name;
6400 if (empty($active_editors)) {
6401 //$active_editors = array('textarea');
6403 $editors_available = array_reverse($editors_available, true);
6404 $return = $OUTPUT->heading(get_string('acteditorshhdr', 'editor'), 3, 'main', true);
6405 $return .= $OUTPUT->box_start('generalbox editorsui');
6407 $table = new html_table();
6408 $table->head
= array($txt->name
, $txt->enable
, $txt->updown
, $txt->settings
, $struninstall);
6409 $table->colclasses
= array('leftalign', 'centeralign', 'centeralign', 'centeralign', 'centeralign');
6410 $table->id
= 'editormanagement';
6411 $table->attributes
['class'] = 'admintable generaltable';
6412 $table->data
= array();
6414 // iterate through auth plugins and add to the display table
6416 $editorcount = count($active_editors);
6417 $url = "editors.php?sesskey=" . sesskey();
6418 foreach ($editors_available as $editor => $name) {
6421 if (in_array($editor, $active_editors)) {
6422 $hideshow = "<a href=\"$url&action=disable&editor=$editor\">";
6423 $hideshow .= "<img src=\"" . $OUTPUT->pix_url('t/hide') . "\" class=\"iconsmall\" alt=\"disable\" /></a>";
6424 // $hideshow = "<a href=\"$url&action=disable&editor=$editor\"><input type=\"checkbox\" checked /></a>";
6426 $displayname = $name;
6429 $hideshow = "<a href=\"$url&action=enable&editor=$editor\">";
6430 $hideshow .= "<img src=\"" . $OUTPUT->pix_url('t/show') . "\" class=\"iconsmall\" alt=\"enable\" /></a>";
6431 // $hideshow = "<a href=\"$url&action=enable&editor=$editor\"><input type=\"checkbox\" /></a>";
6433 $displayname = $name;
6434 $class = 'dimmed_text';
6437 // up/down link (only if auth is enabled)
6440 if ($updowncount > 1) {
6441 $updown .= "<a href=\"$url&action=up&editor=$editor\">";
6442 $updown .= "<img src=\"" . $OUTPUT->pix_url('t/up') . "\" alt=\"up\" class=\"iconsmall\" /></a> ";
6445 $updown .= "<img src=\"" . $OUTPUT->pix_url('spacer') . "\" class=\"iconsmall\" alt=\"\" /> ";
6447 if ($updowncount < $editorcount) {
6448 $updown .= "<a href=\"$url&action=down&editor=$editor\">";
6449 $updown .= "<img src=\"" . $OUTPUT->pix_url('t/down') . "\" alt=\"down\" class=\"iconsmall\" /></a>";
6452 $updown .= "<img src=\"" . $OUTPUT->pix_url('spacer') . "\" class=\"iconsmall\" alt=\"\" />";
6458 if (file_exists($CFG->dirroot
.'/lib/editor/'.$editor.'/settings.php')) {
6459 $eurl = new moodle_url('/admin/settings.php', array('section'=>'editorsettings'.$editor));
6460 $settings = "<a href='$eurl'>{$txt->settings}</a>";
6466 if ($uninstallurl = core_plugin_manager
::instance()->get_uninstall_url('editor_'.$editor, 'manage')) {
6467 $uninstall = html_writer
::link($uninstallurl, $struninstall);
6470 // Add a row to the table.
6471 $row = new html_table_row(array($displayname, $hideshow, $updown, $settings, $uninstall));
6473 $row->attributes
['class'] = $class;
6475 $table->data
[] = $row;
6477 $return .= html_writer
::table($table);
6478 $return .= get_string('configeditorplugins', 'editor').'<br />'.get_string('tablenosave', 'admin');
6479 $return .= $OUTPUT->box_end();
6480 return highlight($query, $return);
6486 * Special class for license administration.
6488 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
6490 class admin_setting_managelicenses
extends admin_setting
{
6492 * Calls parent::__construct with specific arguments
6494 public function __construct() {
6495 $this->nosave
= true;
6496 parent
::__construct('licensesui', get_string('licensesettings', 'admin'), '', '');
6500 * Always returns true, does nothing
6504 public function get_setting() {
6509 * Always returns true, does nothing
6513 public function get_defaultsetting() {
6518 * Always returns '', does not write anything
6520 * @return string Always returns ''
6522 public function write_setting($data) {
6523 // do not write any setting
6528 * Builds the XHTML to display the control
6530 * @param string $data Unused
6531 * @param string $query
6534 public function output_html($data, $query='') {
6535 global $CFG, $OUTPUT;
6536 require_once($CFG->libdir
. '/licenselib.php');
6537 $url = "licenses.php?sesskey=" . sesskey();
6540 $txt = get_strings(array('administration', 'settings', 'name', 'enable', 'disable', 'none'));
6541 $licenses = license_manager
::get_licenses();
6543 $return = $OUTPUT->heading(get_string('availablelicenses', 'admin'), 3, 'main', true);
6545 $return .= $OUTPUT->box_start('generalbox editorsui');
6547 $table = new html_table();
6548 $table->head
= array($txt->name
, $txt->enable
);
6549 $table->colclasses
= array('leftalign', 'centeralign');
6550 $table->id
= 'availablelicenses';
6551 $table->attributes
['class'] = 'admintable generaltable';
6552 $table->data
= array();
6554 foreach ($licenses as $value) {
6555 $displayname = html_writer
::link($value->source
, get_string($value->shortname
, 'license'), array('target'=>'_blank'));
6557 if ($value->enabled
== 1) {
6558 $hideshow = html_writer
::link($url.'&action=disable&license='.$value->shortname
,
6559 html_writer
::tag('img', '', array('src'=>$OUTPUT->pix_url('t/hide'), 'class'=>'iconsmall', 'alt'=>'disable')));
6561 $hideshow = html_writer
::link($url.'&action=enable&license='.$value->shortname
,
6562 html_writer
::tag('img', '', array('src'=>$OUTPUT->pix_url('t/show'), 'class'=>'iconsmall', 'alt'=>'enable')));
6565 if ($value->shortname
== $CFG->sitedefaultlicense
) {
6566 $displayname .= ' '.html_writer
::tag('img', '', array('src'=>$OUTPUT->pix_url('t/locked'), 'class'=>'iconsmall', 'alt'=>get_string('default'), 'title'=>get_string('default')));
6572 $table->data
[] =array($displayname, $hideshow);
6574 $return .= html_writer
::table($table);
6575 $return .= $OUTPUT->box_end();
6576 return highlight($query, $return);
6581 * Course formats manager. Allows to enable/disable formats and jump to settings
6583 class admin_setting_manageformats
extends admin_setting
{
6586 * Calls parent::__construct with specific arguments
6588 public function __construct() {
6589 $this->nosave
= true;
6590 parent
::__construct('formatsui', new lang_string('manageformats', 'core_admin'), '', '');
6594 * Always returns true
6598 public function get_setting() {
6603 * Always returns true
6607 public function get_defaultsetting() {
6612 * Always returns '' and doesn't write anything
6614 * @param mixed $data string or array, must not be NULL
6615 * @return string Always returns ''
6617 public function write_setting($data) {
6618 // do not write any setting
6623 * Search to find if Query is related to format plugin
6625 * @param string $query The string to search for
6626 * @return bool true for related false for not
6628 public function is_related($query) {
6629 if (parent
::is_related($query)) {
6632 $formats = core_plugin_manager
::instance()->get_plugins_of_type('format');
6633 foreach ($formats as $format) {
6634 if (strpos($format->component
, $query) !== false ||
6635 strpos(core_text
::strtolower($format->displayname
), $query) !== false) {
6643 * Return XHTML to display control
6645 * @param mixed $data Unused
6646 * @param string $query
6647 * @return string highlight
6649 public function output_html($data, $query='') {
6650 global $CFG, $OUTPUT;
6652 $return = $OUTPUT->heading(new lang_string('courseformats'), 3, 'main');
6653 $return .= $OUTPUT->box_start('generalbox formatsui');
6655 $formats = core_plugin_manager
::instance()->get_plugins_of_type('format');
6658 $txt = get_strings(array('settings', 'name', 'enable', 'disable', 'up', 'down', 'default'));
6659 $txt->uninstall
= get_string('uninstallplugin', 'core_admin');
6660 $txt->updown
= "$txt->up/$txt->down";
6662 $table = new html_table();
6663 $table->head
= array($txt->name
, $txt->enable
, $txt->updown
, $txt->uninstall
, $txt->settings
);
6664 $table->align
= array('left', 'center', 'center', 'center', 'center');
6665 $table->attributes
['class'] = 'manageformattable generaltable admintable';
6666 $table->data
= array();
6669 $defaultformat = get_config('moodlecourse', 'format');
6670 $spacer = $OUTPUT->pix_icon('spacer', '', 'moodle', array('class' => 'iconsmall'));
6671 foreach ($formats as $format) {
6672 $url = new moodle_url('/admin/courseformats.php',
6673 array('sesskey' => sesskey(), 'format' => $format->name
));
6676 if ($format->is_enabled()) {
6677 $strformatname = $format->displayname
;
6678 if ($defaultformat === $format->name
) {
6679 $hideshow = $txt->default;
6681 $hideshow = html_writer
::link($url->out(false, array('action' => 'disable')),
6682 $OUTPUT->pix_icon('t/hide', $txt->disable
, 'moodle', array('class' => 'iconsmall')));
6685 $strformatname = $format->displayname
;
6686 $class = 'dimmed_text';
6687 $hideshow = html_writer
::link($url->out(false, array('action' => 'enable')),
6688 $OUTPUT->pix_icon('t/show', $txt->enable
, 'moodle', array('class' => 'iconsmall')));
6692 $updown .= html_writer
::link($url->out(false, array('action' => 'up')),
6693 $OUTPUT->pix_icon('t/up', $txt->up
, 'moodle', array('class' => 'iconsmall'))). '';
6697 if ($cnt < count($formats) - 1) {
6698 $updown .= ' '.html_writer
::link($url->out(false, array('action' => 'down')),
6699 $OUTPUT->pix_icon('t/down', $txt->down
, 'moodle', array('class' => 'iconsmall')));
6705 if ($format->get_settings_url()) {
6706 $settings = html_writer
::link($format->get_settings_url(), $txt->settings
);
6709 if ($uninstallurl = core_plugin_manager
::instance()->get_uninstall_url('format_'.$format->name
, 'manage')) {
6710 $uninstall = html_writer
::link($uninstallurl, $txt->uninstall
);
6712 $row = new html_table_row(array($strformatname, $hideshow, $updown, $uninstall, $settings));
6714 $row->attributes
['class'] = $class;
6716 $table->data
[] = $row;
6718 $return .= html_writer
::table($table);
6719 $link = html_writer
::link(new moodle_url('/admin/settings.php', array('section' => 'coursesettings')), new lang_string('coursesettings'));
6720 $return .= html_writer
::tag('p', get_string('manageformatsgotosettings', 'admin', $link));
6721 $return .= $OUTPUT->box_end();
6722 return highlight($query, $return);
6727 * Special class for filter administration.
6729 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
6731 class admin_page_managefilters
extends admin_externalpage
{
6733 * Calls parent::__construct with specific arguments
6735 public function __construct() {
6737 parent
::__construct('managefilters', get_string('filtersettings', 'admin'), "$CFG->wwwroot/$CFG->admin/filters.php");
6741 * Searches all installed filters for specified filter
6743 * @param string $query The filter(string) to search for
6744 * @param string $query
6746 public function search($query) {
6748 if ($result = parent
::search($query)) {
6753 $filternames = filter_get_all_installed();
6754 foreach ($filternames as $path => $strfiltername) {
6755 if (strpos(core_text
::strtolower($strfiltername), $query) !== false) {
6759 if (strpos($path, $query) !== false) {
6766 $result = new stdClass
;
6767 $result->page
= $this;
6768 $result->settings
= array();
6769 return array($this->name
=> $result);
6778 * Initialise admin page - this function does require login and permission
6779 * checks specified in page definition.
6781 * This function must be called on each admin page before other code.
6783 * @global moodle_page $PAGE
6785 * @param string $section name of page
6786 * @param string $extrabutton extra HTML that is added after the blocks editing on/off button.
6787 * @param array $extraurlparams an array paramname => paramvalue, or parameters that need to be
6788 * added to the turn blocks editing on/off form, so this page reloads correctly.
6789 * @param string $actualurl if the actual page being viewed is not the normal one for this
6790 * page (e.g. admin/roles/allow.php, instead of admin/roles/manage.php, you can pass the alternate URL here.
6791 * @param array $options Additional options that can be specified for page setup.
6792 * pagelayout - This option can be used to set a specific pagelyaout, admin is default.
6794 function admin_externalpage_setup($section, $extrabutton = '', array $extraurlparams = null, $actualurl = '', array $options = array()) {
6795 global $CFG, $PAGE, $USER, $SITE, $OUTPUT;
6797 $PAGE->set_context(null); // hack - set context to something, by default to system context
6802 if (!empty($options['pagelayout'])) {
6803 // A specific page layout has been requested.
6804 $PAGE->set_pagelayout($options['pagelayout']);
6805 } else if ($section === 'upgradesettings') {
6806 $PAGE->set_pagelayout('maintenance');
6808 $PAGE->set_pagelayout('admin');
6811 $adminroot = admin_get_root(false, false); // settings not required for external pages
6812 $extpage = $adminroot->locate($section, true);
6814 if (empty($extpage) or !($extpage instanceof admin_externalpage
)) {
6815 // The requested section isn't in the admin tree
6816 // It could be because the user has inadequate capapbilities or because the section doesn't exist
6817 if (!has_capability('moodle/site:config', context_system
::instance())) {
6818 // The requested section could depend on a different capability
6819 // but most likely the user has inadequate capabilities
6820 print_error('accessdenied', 'admin');
6822 print_error('sectionerror', 'admin', "$CFG->wwwroot/$CFG->admin/");
6826 // this eliminates our need to authenticate on the actual pages
6827 if (!$extpage->check_access()) {
6828 print_error('accessdenied', 'admin');
6832 navigation_node
::require_admin_tree();
6834 // $PAGE->set_extra_button($extrabutton); TODO
6837 $actualurl = $extpage->url
;
6840 $PAGE->set_url($actualurl, $extraurlparams);
6841 if (strpos($PAGE->pagetype
, 'admin-') !== 0) {
6842 $PAGE->set_pagetype('admin-' . $PAGE->pagetype
);
6845 if (empty($SITE->fullname
) ||
empty($SITE->shortname
)) {
6846 // During initial install.
6847 $strinstallation = get_string('installation', 'install');
6848 $strsettings = get_string('settings');
6849 $PAGE->navbar
->add($strsettings);
6850 $PAGE->set_title($strinstallation);
6851 $PAGE->set_heading($strinstallation);
6852 $PAGE->set_cacheable(false);
6856 // Locate the current item on the navigation and make it active when found.
6857 $path = $extpage->path
;
6858 $node = $PAGE->settingsnav
;
6859 while ($node && count($path) > 0) {
6860 $node = $node->get(array_pop($path));
6863 $node->make_active();
6867 $adminediting = optional_param('adminedit', -1, PARAM_BOOL
);
6868 if ($PAGE->user_allowed_editing() && $adminediting != -1) {
6869 $USER->editing
= $adminediting;
6872 $visiblepathtosection = array_reverse($extpage->visiblepath
);
6874 if ($PAGE->user_allowed_editing()) {
6875 if ($PAGE->user_is_editing()) {
6876 $caption = get_string('blockseditoff');
6877 $url = new moodle_url($PAGE->url
, array('adminedit'=>'0', 'sesskey'=>sesskey()));
6879 $caption = get_string('blocksediton');
6880 $url = new moodle_url($PAGE->url
, array('adminedit'=>'1', 'sesskey'=>sesskey()));
6882 $PAGE->set_button($OUTPUT->single_button($url, $caption, 'get'));
6885 $PAGE->set_title("$SITE->shortname: " . implode(": ", $visiblepathtosection));
6886 $PAGE->set_heading($SITE->fullname
);
6888 // prevent caching in nav block
6889 $PAGE->navigation
->clear_cache();
6893 * Returns the reference to admin tree root
6895 * @return object admin_root object
6897 function admin_get_root($reload=false, $requirefulltree=true) {
6898 global $CFG, $DB, $OUTPUT;
6900 static $ADMIN = NULL;
6902 if (is_null($ADMIN)) {
6903 // create the admin tree!
6904 $ADMIN = new admin_root($requirefulltree);
6907 if ($reload or ($requirefulltree and !$ADMIN->fulltree
)) {
6908 $ADMIN->purge_children($requirefulltree);
6911 if (!$ADMIN->loaded
) {
6912 // we process this file first to create categories first and in correct order
6913 require($CFG->dirroot
.'/'.$CFG->admin
.'/settings/top.php');
6915 // now we process all other files in admin/settings to build the admin tree
6916 foreach (glob($CFG->dirroot
.'/'.$CFG->admin
.'/settings/*.php') as $file) {
6917 if ($file == $CFG->dirroot
.'/'.$CFG->admin
.'/settings/top.php') {
6920 if ($file == $CFG->dirroot
.'/'.$CFG->admin
.'/settings/plugins.php') {
6921 // plugins are loaded last - they may insert pages anywhere
6926 require($CFG->dirroot
.'/'.$CFG->admin
.'/settings/plugins.php');
6928 $ADMIN->loaded
= true;
6934 /// settings utility functions
6937 * This function applies default settings.
6939 * @param object $node, NULL means complete tree, null by default
6940 * @param bool $unconditional if true overrides all values with defaults, null buy default
6942 function admin_apply_default_settings($node=NULL, $unconditional=true) {
6945 if (is_null($node)) {
6946 core_plugin_manager
::reset_caches();
6947 $node = admin_get_root(true, true);
6950 if ($node instanceof admin_category
) {
6951 $entries = array_keys($node->children
);
6952 foreach ($entries as $entry) {
6953 admin_apply_default_settings($node->children
[$entry], $unconditional);
6956 } else if ($node instanceof admin_settingpage
) {
6957 foreach ($node->settings
as $setting) {
6958 if (!$unconditional and !is_null($setting->get_setting())) {
6959 //do not override existing defaults
6962 $defaultsetting = $setting->get_defaultsetting();
6963 if (is_null($defaultsetting)) {
6964 // no value yet - default maybe applied after admin user creation or in upgradesettings
6967 $setting->write_setting($defaultsetting);
6968 $setting->write_setting_flags(null);
6971 // Just in case somebody modifies the list of active plugins directly.
6972 core_plugin_manager
::reset_caches();
6976 * Store changed settings, this function updates the errors variable in $ADMIN
6978 * @param object $formdata from form
6979 * @return int number of changed settings
6981 function admin_write_settings($formdata) {
6982 global $CFG, $SITE, $DB;
6984 $olddbsessions = !empty($CFG->dbsessions
);
6985 $formdata = (array)$formdata;
6988 foreach ($formdata as $fullname=>$value) {
6989 if (strpos($fullname, 's_') !== 0) {
6990 continue; // not a config value
6992 $data[$fullname] = $value;
6995 $adminroot = admin_get_root();
6996 $settings = admin_find_write_settings($adminroot, $data);
6999 foreach ($settings as $fullname=>$setting) {
7000 /** @var $setting admin_setting */
7001 $original = $setting->get_setting();
7002 $error = $setting->write_setting($data[$fullname]);
7003 if ($error !== '') {
7004 $adminroot->errors
[$fullname] = new stdClass();
7005 $adminroot->errors
[$fullname]->data
= $data[$fullname];
7006 $adminroot->errors
[$fullname]->id
= $setting->get_id();
7007 $adminroot->errors
[$fullname]->error
= $error;
7009 $setting->write_setting_flags($data);
7011 if ($setting->post_write_settings($original)) {
7016 if ($olddbsessions != !empty($CFG->dbsessions
)) {
7020 // Now update $SITE - just update the fields, in case other people have a
7021 // a reference to it (e.g. $PAGE, $COURSE).
7022 $newsite = $DB->get_record('course', array('id'=>$SITE->id
));
7023 foreach (get_object_vars($newsite) as $field => $value) {
7024 $SITE->$field = $value;
7027 // now reload all settings - some of them might depend on the changed
7028 admin_get_root(true);
7033 * Internal recursive function - finds all settings from submitted form
7035 * @param object $node Instance of admin_category, or admin_settingpage
7036 * @param array $data
7039 function admin_find_write_settings($node, $data) {
7046 if ($node instanceof admin_category
) {
7047 $entries = array_keys($node->children
);
7048 foreach ($entries as $entry) {
7049 $return = array_merge($return, admin_find_write_settings($node->children
[$entry], $data));
7052 } else if ($node instanceof admin_settingpage
) {
7053 foreach ($node->settings
as $setting) {
7054 $fullname = $setting->get_full_name();
7055 if (array_key_exists($fullname, $data)) {
7056 $return[$fullname] = $setting;
7066 * Internal function - prints the search results
7068 * @param string $query String to search for
7069 * @return string empty or XHTML
7071 function admin_search_settings_html($query) {
7072 global $CFG, $OUTPUT;
7074 if (core_text
::strlen($query) < 2) {
7077 $query = core_text
::strtolower($query);
7079 $adminroot = admin_get_root();
7080 $findings = $adminroot->search($query);
7082 $savebutton = false;
7084 foreach ($findings as $found) {
7085 $page = $found->page
;
7086 $settings = $found->settings
;
7087 if ($page->is_hidden()) {
7088 // hidden pages are not displayed in search results
7091 if ($page instanceof admin_externalpage
) {
7092 $return .= $OUTPUT->heading(get_string('searchresults','admin').' - <a href="'.$page->url
.'">'.highlight($query, $page->visiblename
).'</a>', 2, 'main');
7093 } else if ($page instanceof admin_settingpage
) {
7094 $return .= $OUTPUT->heading(get_string('searchresults','admin').' - <a href="'.$CFG->wwwroot
.'/'.$CFG->admin
.'/settings.php?section='.$page->name
.'">'.highlight($query, $page->visiblename
).'</a>', 2, 'main');
7098 if (!empty($settings)) {
7099 $return .= '<fieldset class="adminsettings">'."\n";
7100 foreach ($settings as $setting) {
7101 if (empty($setting->nosave
)) {
7104 $return .= '<div class="clearer"><!-- --></div>'."\n";
7105 $fullname = $setting->get_full_name();
7106 if (array_key_exists($fullname, $adminroot->errors
)) {
7107 $data = $adminroot->errors
[$fullname]->data
;
7109 $data = $setting->get_setting();
7110 // do not use defaults if settings not available - upgradesettings handles the defaults!
7112 $return .= $setting->output_html($data, $query);
7114 $return .= '</fieldset>';
7119 $return .= '<div class="form-buttons"><input class="form-submit" type="submit" value="'.get_string('savechanges','admin').'" /></div>';
7126 * Internal function - returns arrays of html pages with uninitialised settings
7128 * @param object $node Instance of admin_category or admin_settingpage
7131 function admin_output_new_settings_by_page($node) {
7135 if ($node instanceof admin_category
) {
7136 $entries = array_keys($node->children
);
7137 foreach ($entries as $entry) {
7138 $return +
= admin_output_new_settings_by_page($node->children
[$entry]);
7141 } else if ($node instanceof admin_settingpage
) {
7142 $newsettings = array();
7143 foreach ($node->settings
as $setting) {
7144 if (is_null($setting->get_setting())) {
7145 $newsettings[] = $setting;
7148 if (count($newsettings) > 0) {
7149 $adminroot = admin_get_root();
7150 $page = $OUTPUT->heading(get_string('upgradesettings','admin').' - '.$node->visiblename
, 2, 'main');
7151 $page .= '<fieldset class="adminsettings">'."\n";
7152 foreach ($newsettings as $setting) {
7153 $fullname = $setting->get_full_name();
7154 if (array_key_exists($fullname, $adminroot->errors
)) {
7155 $data = $adminroot->errors
[$fullname]->data
;
7157 $data = $setting->get_setting();
7158 if (is_null($data)) {
7159 $data = $setting->get_defaultsetting();
7162 $page .= '<div class="clearer"><!-- --></div>'."\n";
7163 $page .= $setting->output_html($data);
7165 $page .= '</fieldset>';
7166 $return[$node->name
] = $page;
7174 * Format admin settings
7176 * @param object $setting
7177 * @param string $title label element
7178 * @param string $form form fragment, html code - not highlighted automatically
7179 * @param string $description
7180 * @param mixed $label link label to id, true by default or string being the label to connect it to
7181 * @param string $warning warning text
7182 * @param sting $defaultinfo defaults info, null means nothing, '' is converted to "Empty" string, defaults to null
7183 * @param string $query search query to be highlighted
7184 * @return string XHTML
7186 function format_admin_setting($setting, $title='', $form='', $description='', $label=true, $warning='', $defaultinfo=NULL, $query='') {
7189 $name = empty($setting->plugin
) ?
$setting->name
: "$setting->plugin | $setting->name";
7190 $fullname = $setting->get_full_name();
7192 // sometimes the id is not id_s_name, but id_s_name_m or something, and this does not validate
7193 if ($label === true) {
7194 $labelfor = 'for = "'.$setting->get_id().'"';
7195 } else if ($label === false) {
7198 $labelfor = 'for="' . $label . '"';
7200 $form .= $setting->output_setting_flags();
7203 if (empty($setting->plugin
)) {
7204 if (array_key_exists($setting->name
, $CFG->config_php_settings
)) {
7205 $override = '<div class="form-overridden">'.get_string('configoverride', 'admin').'</div>';
7208 if (array_key_exists($setting->plugin
, $CFG->forced_plugin_settings
) and array_key_exists($setting->name
, $CFG->forced_plugin_settings
[$setting->plugin
])) {
7209 $override = '<div class="form-overridden">'.get_string('configoverride', 'admin').'</div>';
7213 if ($warning !== '') {
7214 $warning = '<div class="form-warning">'.$warning.'</div>';
7217 $defaults = array();
7218 if (!is_null($defaultinfo)) {
7219 if ($defaultinfo === '') {
7220 $defaultinfo = get_string('emptysettingvalue', 'admin');
7222 $defaults[] = $defaultinfo;
7225 $setting->get_setting_flag_defaults($defaults);
7227 if (!empty($defaults)) {
7228 $defaultinfo = implode(', ', $defaults);
7229 $defaultinfo = highlight($query, nl2br(s($defaultinfo)));
7230 $defaultinfo = '<div class="form-defaultinfo">'.get_string('defaultsettinginfo', 'admin', $defaultinfo).'</div>';
7234 $adminroot = admin_get_root();
7236 if (array_key_exists($fullname, $adminroot->errors
)) {
7237 $error = '<div><span class="error">' . $adminroot->errors
[$fullname]->error
. '</span></div>';
7241 <div class="form-item clearfix" id="admin-'.$setting->name
.'">
7242 <div class="form-label">
7243 <label '.$labelfor.'>'.highlightfast($query, $title).$override.$warning.'</label>
7244 <span class="form-shortname">'.highlightfast($query, $name).'</span>
7246 <div class="form-setting">'.$error.$form.$defaultinfo.'</div>
7247 <div class="form-description">'.highlight($query, markdown_to_html($description)).'</div>
7254 * Based on find_new_settings{@link ()} in upgradesettings.php
7255 * Looks to find any admin settings that have not been initialized. Returns 1 if it finds any.
7257 * @param object $node Instance of admin_category, or admin_settingpage
7258 * @return boolean true if any settings haven't been initialised, false if they all have
7260 function any_new_admin_settings($node) {
7262 if ($node instanceof admin_category
) {
7263 $entries = array_keys($node->children
);
7264 foreach ($entries as $entry) {
7265 if (any_new_admin_settings($node->children
[$entry])) {
7270 } else if ($node instanceof admin_settingpage
) {
7271 foreach ($node->settings
as $setting) {
7272 if ($setting->get_setting() === NULL) {
7282 * Moved from admin/replace.php so that we can use this in cron
7284 * @param string $search string to look for
7285 * @param string $replace string to replace
7286 * @return bool success or fail
7288 function db_replace($search, $replace) {
7289 global $DB, $CFG, $OUTPUT;
7291 // TODO: this is horrible hack, we should do whitelisting and each plugin should be responsible for proper replacing...
7292 $skiptables = array('config', 'config_plugins', 'config_log', 'upgrade_log', 'log',
7293 'filter_config', 'sessions', 'events_queue', 'repository_instance_config',
7294 'block_instances', '');
7296 // Turn off time limits, sometimes upgrades can be slow.
7297 core_php_time_limit
::raise();
7299 if (!$tables = $DB->get_tables() ) { // No tables yet at all.
7302 foreach ($tables as $table) {
7304 if (in_array($table, $skiptables)) { // Don't process these
7308 if ($columns = $DB->get_columns($table)) {
7309 $DB->set_debug(true);
7310 foreach ($columns as $column) {
7311 $DB->replace_all_text($table, $column, $search, $replace);
7313 $DB->set_debug(false);
7317 // delete modinfo caches
7318 rebuild_course_cache(0, true);
7320 // TODO: we should ask all plugins to do the search&replace, for now let's do only blocks...
7321 $blocks = core_component
::get_plugin_list('block');
7322 foreach ($blocks as $blockname=>$fullblock) {
7323 if ($blockname === 'NEWBLOCK') { // Someone has unzipped the template, ignore it
7327 if (!is_readable($fullblock.'/lib.php')) {
7331 $function = 'block_'.$blockname.'_global_db_replace';
7332 include_once($fullblock.'/lib.php');
7333 if (!function_exists($function)) {
7337 echo $OUTPUT->notification("Replacing in $blockname blocks...", 'notifysuccess');
7338 $function($search, $replace);
7339 echo $OUTPUT->notification("...finished", 'notifysuccess');
7348 * Manage repository settings
7350 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
7352 class admin_setting_managerepository
extends admin_setting
{
7357 * calls parent::__construct with specific arguments
7359 public function __construct() {
7361 parent
::__construct('managerepository', get_string('manage', 'repository'), '', '');
7362 $this->baseurl
= $CFG->wwwroot
. '/' . $CFG->admin
. '/repository.php?sesskey=' . sesskey();
7366 * Always returns true, does nothing
7370 public function get_setting() {
7375 * Always returns true does nothing
7379 public function get_defaultsetting() {
7384 * Always returns s_managerepository
7386 * @return string Always return 's_managerepository'
7388 public function get_full_name() {
7389 return 's_managerepository';
7393 * Always returns '' doesn't do anything
7395 public function write_setting($data) {
7396 $url = $this->baseurl
. '&new=' . $data;
7399 // Should not use redirect and exit here
7400 // Find a better way to do this.
7406 * Searches repository plugins for one that matches $query
7408 * @param string $query The string to search for
7409 * @return bool true if found, false if not
7411 public function is_related($query) {
7412 if (parent
::is_related($query)) {
7416 $repositories= core_component
::get_plugin_list('repository');
7417 foreach ($repositories as $p => $dir) {
7418 if (strpos($p, $query) !== false) {
7422 foreach (repository
::get_types() as $instance) {
7423 $title = $instance->get_typename();
7424 if (strpos(core_text
::strtolower($title), $query) !== false) {
7432 * Helper function that generates a moodle_url object
7433 * relevant to the repository
7436 function repository_action_url($repository) {
7437 return new moodle_url($this->baseurl
, array('sesskey'=>sesskey(), 'repos'=>$repository));
7441 * Builds XHTML to display the control
7443 * @param string $data Unused
7444 * @param string $query
7445 * @return string XHTML
7447 public function output_html($data, $query='') {
7448 global $CFG, $USER, $OUTPUT;
7450 // Get strings that are used
7451 $strshow = get_string('on', 'repository');
7452 $strhide = get_string('off', 'repository');
7453 $strdelete = get_string('disabled', 'repository');
7455 $actionchoicesforexisting = array(
7458 'delete' => $strdelete
7461 $actionchoicesfornew = array(
7462 'newon' => $strshow,
7463 'newoff' => $strhide,
7464 'delete' => $strdelete
7468 $return .= $OUTPUT->box_start('generalbox');
7470 // Set strings that are used multiple times
7471 $settingsstr = get_string('settings');
7472 $disablestr = get_string('disable');
7474 // Table to list plug-ins
7475 $table = new html_table();
7476 $table->head
= array(get_string('name'), get_string('isactive', 'repository'), get_string('order'), $settingsstr);
7477 $table->align
= array('left', 'center', 'center', 'center', 'center');
7478 $table->data
= array();
7480 // Get list of used plug-ins
7481 $repositorytypes = repository
::get_types();
7482 if (!empty($repositorytypes)) {
7483 // Array to store plugins being used
7484 $alreadyplugins = array();
7485 $totalrepositorytypes = count($repositorytypes);
7487 foreach ($repositorytypes as $i) {
7489 $typename = $i->get_typename();
7490 // Display edit link only if you can config the type or if it has multiple instances (e.g. has instance config)
7491 $typeoptionnames = repository
::static_function($typename, 'get_type_option_names');
7492 $instanceoptionnames = repository
::static_function($typename, 'get_instance_option_names');
7494 if (!empty($typeoptionnames) ||
!empty($instanceoptionnames)) {
7495 // Calculate number of instances in order to display them for the Moodle administrator
7496 if (!empty($instanceoptionnames)) {
7498 $params['context'] = array(context_system
::instance());
7499 $params['onlyvisible'] = false;
7500 $params['type'] = $typename;
7501 $admininstancenumber = count(repository
::static_function($typename, 'get_instances', $params));
7503 $admininstancenumbertext = get_string('instancesforsite', 'repository', $admininstancenumber);
7504 $params['context'] = array();
7505 $instances = repository
::static_function($typename, 'get_instances', $params);
7506 $courseinstances = array();
7507 $userinstances = array();
7509 foreach ($instances as $instance) {
7510 $repocontext = context
::instance_by_id($instance->instance
->contextid
);
7511 if ($repocontext->contextlevel
== CONTEXT_COURSE
) {
7512 $courseinstances[] = $instance;
7513 } else if ($repocontext->contextlevel
== CONTEXT_USER
) {
7514 $userinstances[] = $instance;
7518 $instancenumber = count($courseinstances);
7519 $courseinstancenumbertext = get_string('instancesforcourses', 'repository', $instancenumber);
7521 // user private instances
7522 $instancenumber = count($userinstances);
7523 $userinstancenumbertext = get_string('instancesforusers', 'repository', $instancenumber);
7525 $admininstancenumbertext = "";
7526 $courseinstancenumbertext = "";
7527 $userinstancenumbertext = "";
7530 $settings .= '<a href="' . $this->baseurl
. '&action=edit&repos=' . $typename . '">' . $settingsstr .'</a>';
7532 $settings .= $OUTPUT->container_start('mdl-left');
7533 $settings .= '<br/>';
7534 $settings .= $admininstancenumbertext;
7535 $settings .= '<br/>';
7536 $settings .= $courseinstancenumbertext;
7537 $settings .= '<br/>';
7538 $settings .= $userinstancenumbertext;
7539 $settings .= $OUTPUT->container_end();
7541 // Get the current visibility
7542 if ($i->get_visible()) {
7543 $currentaction = 'show';
7545 $currentaction = 'hide';
7548 $select = new single_select($this->repository_action_url($typename, 'repos'), 'action', $actionchoicesforexisting, $currentaction, null, 'applyto' . basename($typename));
7550 // Display up/down link
7552 // Should be done with CSS instead.
7553 $spacer = $OUTPUT->spacer(array('height' => 15, 'width' => 15, 'class' => 'smallicon'));
7555 if ($updowncount > 1) {
7556 $updown .= "<a href=\"$this->baseurl&action=moveup&repos=".$typename."\">";
7557 $updown .= "<img src=\"" . $OUTPUT->pix_url('t/up') . "\" alt=\"up\" class=\"iconsmall\" /></a> ";
7562 if ($updowncount < $totalrepositorytypes) {
7563 $updown .= "<a href=\"$this->baseurl&action=movedown&repos=".$typename."\">";
7564 $updown .= "<img src=\"" . $OUTPUT->pix_url('t/down') . "\" alt=\"down\" class=\"iconsmall\" /></a>";
7572 $table->data
[] = array($i->get_readablename(), $OUTPUT->render($select), $updown, $settings);
7574 if (!in_array($typename, $alreadyplugins)) {
7575 $alreadyplugins[] = $typename;
7580 // Get all the plugins that exist on disk
7581 $plugins = core_component
::get_plugin_list('repository');
7582 if (!empty($plugins)) {
7583 foreach ($plugins as $plugin => $dir) {
7584 // Check that it has not already been listed
7585 if (!in_array($plugin, $alreadyplugins)) {
7586 $select = new single_select($this->repository_action_url($plugin, 'repos'), 'action', $actionchoicesfornew, 'delete', null, 'applyto' . basename($plugin));
7587 $table->data
[] = array(get_string('pluginname', 'repository_'.$plugin), $OUTPUT->render($select), '', '');
7592 $return .= html_writer
::table($table);
7593 $return .= $OUTPUT->box_end();
7594 return highlight($query, $return);
7599 * Special checkbox for enable mobile web service
7600 * If enable then we store the service id of the mobile service into config table
7601 * If disable then we unstore the service id from the config table
7603 class admin_setting_enablemobileservice
extends admin_setting_configcheckbox
{
7605 /** @var boolean True means that the capability 'webservice/xmlrpc:use' is set for authenticated user role */
7607 /** @var boolean True means that the capability 'webservice/rest:use' is set for authenticated user role */
7611 * Return true if Authenticated user role has the capability 'webservice/xmlrpc:use' and 'webservice/rest:use', otherwise false.
7615 private function is_protocol_cap_allowed() {
7618 // We keep xmlrpc enabled for backward compatibility.
7619 // If the $this->xmlrpcuse variable is not set, it needs to be set.
7620 if (empty($this->xmlrpcuse
) and $this->xmlrpcuse
!==false) {
7622 $params['permission'] = CAP_ALLOW
;
7623 $params['roleid'] = $CFG->defaultuserroleid
;
7624 $params['capability'] = 'webservice/xmlrpc:use';
7625 $this->xmlrpcuse
= $DB->record_exists('role_capabilities', $params);
7628 // If the $this->restuse variable is not set, it needs to be set.
7629 if (empty($this->restuse
) and $this->restuse
!==false) {
7631 $params['permission'] = CAP_ALLOW
;
7632 $params['roleid'] = $CFG->defaultuserroleid
;
7633 $params['capability'] = 'webservice/rest:use';
7634 $this->restuse
= $DB->record_exists('role_capabilities', $params);
7637 return ($this->xmlrpcuse
&& $this->restuse
);
7641 * Set the 'webservice/xmlrpc:use'/'webservice/rest:use' to the Authenticated user role (allow or not)
7642 * @param type $status true to allow, false to not set
7644 private function set_protocol_cap($status) {
7646 if ($status and !$this->is_protocol_cap_allowed()) {
7647 //need to allow the cap
7648 $permission = CAP_ALLOW
;
7650 } else if (!$status and $this->is_protocol_cap_allowed()){
7651 //need to disallow the cap
7652 $permission = CAP_INHERIT
;
7655 if (!empty($assign)) {
7656 $systemcontext = context_system
::instance();
7657 assign_capability('webservice/xmlrpc:use', $permission, $CFG->defaultuserroleid
, $systemcontext->id
, true);
7658 assign_capability('webservice/rest:use', $permission, $CFG->defaultuserroleid
, $systemcontext->id
, true);
7663 * Builds XHTML to display the control.
7664 * The main purpose of this overloading is to display a warning when https
7665 * is not supported by the server
7666 * @param string $data Unused
7667 * @param string $query
7668 * @return string XHTML
7670 public function output_html($data, $query='') {
7671 global $CFG, $OUTPUT;
7672 $html = parent
::output_html($data, $query);
7674 if ((string)$data === $this->yes
) {
7675 require_once($CFG->dirroot
. "/lib/filelib.php");
7677 $httpswwwroot = str_replace('http:', 'https:', $CFG->wwwroot
); //force https url
7678 $curl->head($httpswwwroot . "/login/index.php");
7679 $info = $curl->get_info();
7680 if (empty($info['http_code']) or ($info['http_code'] >= 400)) {
7681 $html .= $OUTPUT->notification(get_string('nohttpsformobilewarning', 'admin'));
7689 * Retrieves the current setting using the objects name
7693 public function get_setting() {
7696 // First check if is not set.
7697 $result = $this->config_read($this->name
);
7698 if (is_null($result)) {
7702 // For install cli script, $CFG->defaultuserroleid is not set so return 0
7703 // Or if web services aren't enabled this can't be,
7704 if (empty($CFG->defaultuserroleid
) ||
empty($CFG->enablewebservices
)) {
7708 require_once($CFG->dirroot
. '/webservice/lib.php');
7709 $webservicemanager = new webservice();
7710 $mobileservice = $webservicemanager->get_external_service_by_shortname(MOODLE_OFFICIAL_MOBILE_SERVICE
);
7711 if ($mobileservice->enabled
and $this->is_protocol_cap_allowed()) {
7719 * Save the selected setting
7721 * @param string $data The selected site
7722 * @return string empty string or error message
7724 public function write_setting($data) {
7727 //for install cli script, $CFG->defaultuserroleid is not set so do nothing
7728 if (empty($CFG->defaultuserroleid
)) {
7732 $servicename = MOODLE_OFFICIAL_MOBILE_SERVICE
;
7734 require_once($CFG->dirroot
. '/webservice/lib.php');
7735 $webservicemanager = new webservice();
7737 $updateprotocol = false;
7738 if ((string)$data === $this->yes
) {
7739 //code run when enable mobile web service
7740 //enable web service systeme if necessary
7741 set_config('enablewebservices', true);
7743 //enable mobile service
7744 $mobileservice = $webservicemanager->get_external_service_by_shortname(MOODLE_OFFICIAL_MOBILE_SERVICE
);
7745 $mobileservice->enabled
= 1;
7746 $webservicemanager->update_external_service($mobileservice);
7748 //enable xml-rpc server
7749 $activeprotocols = empty($CFG->webserviceprotocols
) ?
array() : explode(',', $CFG->webserviceprotocols
);
7751 if (!in_array('xmlrpc', $activeprotocols)) {
7752 $activeprotocols[] = 'xmlrpc';
7753 $updateprotocol = true;
7756 if (!in_array('rest', $activeprotocols)) {
7757 $activeprotocols[] = 'rest';
7758 $updateprotocol = true;
7761 if ($updateprotocol) {
7762 set_config('webserviceprotocols', implode(',', $activeprotocols));
7765 //allow xml-rpc:use capability for authenticated user
7766 $this->set_protocol_cap(true);
7769 //disable web service system if no other services are enabled
7770 $otherenabledservices = $DB->get_records_select('external_services',
7771 'enabled = :enabled AND (shortname != :shortname OR shortname IS NULL)', array('enabled' => 1,
7772 'shortname' => MOODLE_OFFICIAL_MOBILE_SERVICE
));
7773 if (empty($otherenabledservices)) {
7774 set_config('enablewebservices', false);
7776 //also disable xml-rpc server
7777 $activeprotocols = empty($CFG->webserviceprotocols
) ?
array() : explode(',', $CFG->webserviceprotocols
);
7778 $protocolkey = array_search('xmlrpc', $activeprotocols);
7779 if ($protocolkey !== false) {
7780 unset($activeprotocols[$protocolkey]);
7781 $updateprotocol = true;
7784 $protocolkey = array_search('rest', $activeprotocols);
7785 if ($protocolkey !== false) {
7786 unset($activeprotocols[$protocolkey]);
7787 $updateprotocol = true;
7790 if ($updateprotocol) {
7791 set_config('webserviceprotocols', implode(',', $activeprotocols));
7794 //disallow xml-rpc:use capability for authenticated user
7795 $this->set_protocol_cap(false);
7798 //disable the mobile service
7799 $mobileservice = $webservicemanager->get_external_service_by_shortname(MOODLE_OFFICIAL_MOBILE_SERVICE
);
7800 $mobileservice->enabled
= 0;
7801 $webservicemanager->update_external_service($mobileservice);
7804 return (parent
::write_setting($data));
7809 * Special class for management of external services
7811 * @author Petr Skoda (skodak)
7813 class admin_setting_manageexternalservices
extends admin_setting
{
7815 * Calls parent::__construct with specific arguments
7817 public function __construct() {
7818 $this->nosave
= true;
7819 parent
::__construct('webservicesui', get_string('externalservices', 'webservice'), '', '');
7823 * Always returns true, does nothing
7827 public function get_setting() {
7832 * Always returns true, does nothing
7836 public function get_defaultsetting() {
7841 * Always returns '', does not write anything
7843 * @return string Always returns ''
7845 public function write_setting($data) {
7846 // do not write any setting
7851 * Checks if $query is one of the available external services
7853 * @param string $query The string to search for
7854 * @return bool Returns true if found, false if not
7856 public function is_related($query) {
7859 if (parent
::is_related($query)) {
7863 $services = $DB->get_records('external_services', array(), 'id, name');
7864 foreach ($services as $service) {
7865 if (strpos(core_text
::strtolower($service->name
), $query) !== false) {
7873 * Builds the XHTML to display the control
7875 * @param string $data Unused
7876 * @param string $query
7879 public function output_html($data, $query='') {
7880 global $CFG, $OUTPUT, $DB;
7883 $stradministration = get_string('administration');
7884 $stredit = get_string('edit');
7885 $strservice = get_string('externalservice', 'webservice');
7886 $strdelete = get_string('delete');
7887 $strplugin = get_string('plugin', 'admin');
7888 $stradd = get_string('add');
7889 $strfunctions = get_string('functions', 'webservice');
7890 $strusers = get_string('users');
7891 $strserviceusers = get_string('serviceusers', 'webservice');
7893 $esurl = "$CFG->wwwroot/$CFG->admin/webservice/service.php";
7894 $efurl = "$CFG->wwwroot/$CFG->admin/webservice/service_functions.php";
7895 $euurl = "$CFG->wwwroot/$CFG->admin/webservice/service_users.php";
7897 // built in services
7898 $services = $DB->get_records_select('external_services', 'component IS NOT NULL', null, 'name');
7900 if (!empty($services)) {
7901 $return .= $OUTPUT->heading(get_string('servicesbuiltin', 'webservice'), 3, 'main');
7905 $table = new html_table();
7906 $table->head
= array($strservice, $strplugin, $strfunctions, $strusers, $stredit);
7907 $table->colclasses
= array('leftalign service', 'leftalign plugin', 'centeralign functions', 'centeralign users', 'centeralign ');
7908 $table->id
= 'builtinservices';
7909 $table->attributes
['class'] = 'admintable externalservices generaltable';
7910 $table->data
= array();
7912 // iterate through auth plugins and add to the display table
7913 foreach ($services as $service) {
7914 $name = $service->name
;
7917 if ($service->enabled
) {
7918 $displayname = "<span>$name</span>";
7920 $displayname = "<span class=\"dimmed_text\">$name</span>";
7923 $plugin = $service->component
;
7925 $functions = "<a href=\"$efurl?id=$service->id\">$strfunctions</a>";
7927 if ($service->restrictedusers
) {
7928 $users = "<a href=\"$euurl?id=$service->id\">$strserviceusers</a>";
7930 $users = get_string('allusers', 'webservice');
7933 $edit = "<a href=\"$esurl?id=$service->id\">$stredit</a>";
7935 // add a row to the table
7936 $table->data
[] = array($displayname, $plugin, $functions, $users, $edit);
7938 $return .= html_writer
::table($table);
7942 $return .= $OUTPUT->heading(get_string('servicescustom', 'webservice'), 3, 'main');
7943 $services = $DB->get_records_select('external_services', 'component IS NULL', null, 'name');
7945 $table = new html_table();
7946 $table->head
= array($strservice, $strdelete, $strfunctions, $strusers, $stredit);
7947 $table->colclasses
= array('leftalign service', 'leftalign plugin', 'centeralign functions', 'centeralign users', 'centeralign ');
7948 $table->id
= 'customservices';
7949 $table->attributes
['class'] = 'admintable externalservices generaltable';
7950 $table->data
= array();
7952 // iterate through auth plugins and add to the display table
7953 foreach ($services as $service) {
7954 $name = $service->name
;
7957 if ($service->enabled
) {
7958 $displayname = "<span>$name</span>";
7960 $displayname = "<span class=\"dimmed_text\">$name</span>";
7964 $delete = "<a href=\"$esurl?action=delete&sesskey=".sesskey()."&id=$service->id\">$strdelete</a>";
7966 $functions = "<a href=\"$efurl?id=$service->id\">$strfunctions</a>";
7968 if ($service->restrictedusers
) {
7969 $users = "<a href=\"$euurl?id=$service->id\">$strserviceusers</a>";
7971 $users = get_string('allusers', 'webservice');
7974 $edit = "<a href=\"$esurl?id=$service->id\">$stredit</a>";
7976 // add a row to the table
7977 $table->data
[] = array($displayname, $delete, $functions, $users, $edit);
7979 // add new custom service option
7980 $return .= html_writer
::table($table);
7982 $return .= '<br />';
7983 // add a token to the table
7984 $return .= "<a href=\"$esurl?id=0\">$stradd</a>";
7986 return highlight($query, $return);
7991 * Special class for overview of external services
7993 * @author Jerome Mouneyrac
7995 class admin_setting_webservicesoverview
extends admin_setting
{
7998 * Calls parent::__construct with specific arguments
8000 public function __construct() {
8001 $this->nosave
= true;
8002 parent
::__construct('webservicesoverviewui',
8003 get_string('webservicesoverview', 'webservice'), '', '');
8007 * Always returns true, does nothing
8011 public function get_setting() {
8016 * Always returns true, does nothing
8020 public function get_defaultsetting() {
8025 * Always returns '', does not write anything
8027 * @return string Always returns ''
8029 public function write_setting($data) {
8030 // do not write any setting
8035 * Builds the XHTML to display the control
8037 * @param string $data Unused
8038 * @param string $query
8041 public function output_html($data, $query='') {
8042 global $CFG, $OUTPUT;
8045 $brtag = html_writer
::empty_tag('br');
8047 // Enable mobile web service
8048 $enablemobile = new admin_setting_enablemobileservice('enablemobilewebservice',
8049 get_string('enablemobilewebservice', 'admin'),
8050 get_string('configenablemobilewebservice',
8051 'admin', ''), 0); //we don't want to display it but to know the ws mobile status
8052 $manageserviceurl = new moodle_url("/admin/settings.php?section=mobile");
8053 $wsmobileparam = new stdClass();
8054 $wsmobileparam->enablemobileservice
= get_string('enablemobilewebservice', 'admin');
8055 $wsmobileparam->manageservicelink
= html_writer
::link($manageserviceurl,
8056 get_string('mobile', 'admin'));
8057 $mobilestatus = $enablemobile->get_setting()?
get_string('mobilewsenabled', 'webservice'):get_string('mobilewsdisabled', 'webservice');
8058 $wsmobileparam->wsmobilestatus
= html_writer
::tag('strong', $mobilestatus);
8059 $return .= $OUTPUT->heading(get_string('enablemobilewebservice', 'admin'), 3, 'main');
8060 $return .= $brtag . get_string('enablemobilewsoverview', 'webservice', $wsmobileparam)
8063 /// One system controlling Moodle with Token
8064 $return .= $OUTPUT->heading(get_string('onesystemcontrolling', 'webservice'), 3, 'main');
8065 $table = new html_table();
8066 $table->head
= array(get_string('step', 'webservice'), get_string('status'),
8067 get_string('description'));
8068 $table->colclasses
= array('leftalign step', 'leftalign status', 'leftalign description');
8069 $table->id
= 'onesystemcontrol';
8070 $table->attributes
['class'] = 'admintable wsoverview generaltable';
8071 $table->data
= array();
8073 $return .= $brtag . get_string('onesystemcontrollingdescription', 'webservice')
8076 /// 1. Enable Web Services
8078 $url = new moodle_url("/admin/search.php?query=enablewebservices");
8079 $row[0] = "1. " . html_writer
::tag('a', get_string('enablews', 'webservice'),
8080 array('href' => $url));
8081 $status = html_writer
::tag('span', get_string('no'), array('class' => 'statuscritical'));
8082 if ($CFG->enablewebservices
) {
8083 $status = get_string('yes');
8086 $row[2] = get_string('enablewsdescription', 'webservice');
8087 $table->data
[] = $row;
8089 /// 2. Enable protocols
8091 $url = new moodle_url("/admin/settings.php?section=webserviceprotocols");
8092 $row[0] = "2. " . html_writer
::tag('a', get_string('enableprotocols', 'webservice'),
8093 array('href' => $url));
8094 $status = html_writer
::tag('span', get_string('none'), array('class' => 'statuscritical'));
8095 //retrieve activated protocol
8096 $active_protocols = empty($CFG->webserviceprotocols
) ?
8097 array() : explode(',', $CFG->webserviceprotocols
);
8098 if (!empty($active_protocols)) {
8100 foreach ($active_protocols as $protocol) {
8101 $status .= $protocol . $brtag;
8105 $row[2] = get_string('enableprotocolsdescription', 'webservice');
8106 $table->data
[] = $row;
8108 /// 3. Create user account
8110 $url = new moodle_url("/user/editadvanced.php?id=-1");
8111 $row[0] = "3. " . html_writer
::tag('a', get_string('createuser', 'webservice'),
8112 array('href' => $url));
8114 $row[2] = get_string('createuserdescription', 'webservice');
8115 $table->data
[] = $row;
8117 /// 4. Add capability to users
8119 $url = new moodle_url("/admin/roles/check.php?contextid=1");
8120 $row[0] = "4. " . html_writer
::tag('a', get_string('checkusercapability', 'webservice'),
8121 array('href' => $url));
8123 $row[2] = get_string('checkusercapabilitydescription', 'webservice');
8124 $table->data
[] = $row;
8126 /// 5. Select a web service
8128 $url = new moodle_url("/admin/settings.php?section=externalservices");
8129 $row[0] = "5. " . html_writer
::tag('a', get_string('selectservice', 'webservice'),
8130 array('href' => $url));
8132 $row[2] = get_string('createservicedescription', 'webservice');
8133 $table->data
[] = $row;
8135 /// 6. Add functions
8137 $url = new moodle_url("/admin/settings.php?section=externalservices");
8138 $row[0] = "6. " . html_writer
::tag('a', get_string('addfunctions', 'webservice'),
8139 array('href' => $url));
8141 $row[2] = get_string('addfunctionsdescription', 'webservice');
8142 $table->data
[] = $row;
8144 /// 7. Add the specific user
8146 $url = new moodle_url("/admin/settings.php?section=externalservices");
8147 $row[0] = "7. " . html_writer
::tag('a', get_string('selectspecificuser', 'webservice'),
8148 array('href' => $url));
8150 $row[2] = get_string('selectspecificuserdescription', 'webservice');
8151 $table->data
[] = $row;
8153 /// 8. Create token for the specific user
8155 $url = new moodle_url("/admin/webservice/tokens.php?sesskey=" . sesskey() . "&action=create");
8156 $row[0] = "8. " . html_writer
::tag('a', get_string('createtokenforuser', 'webservice'),
8157 array('href' => $url));
8159 $row[2] = get_string('createtokenforuserdescription', 'webservice');
8160 $table->data
[] = $row;
8162 /// 9. Enable the documentation
8164 $url = new moodle_url("/admin/search.php?query=enablewsdocumentation");
8165 $row[0] = "9. " . html_writer
::tag('a', get_string('enabledocumentation', 'webservice'),
8166 array('href' => $url));
8167 $status = '<span class="warning">' . get_string('no') . '</span>';
8168 if ($CFG->enablewsdocumentation
) {
8169 $status = get_string('yes');
8172 $row[2] = get_string('enabledocumentationdescription', 'webservice');
8173 $table->data
[] = $row;
8175 /// 10. Test the service
8177 $url = new moodle_url("/admin/webservice/testclient.php");
8178 $row[0] = "10. " . html_writer
::tag('a', get_string('testwithtestclient', 'webservice'),
8179 array('href' => $url));
8181 $row[2] = get_string('testwithtestclientdescription', 'webservice');
8182 $table->data
[] = $row;
8184 $return .= html_writer
::table($table);
8186 /// Users as clients with token
8187 $return .= $brtag . $brtag . $brtag;
8188 $return .= $OUTPUT->heading(get_string('userasclients', 'webservice'), 3, 'main');
8189 $table = new html_table();
8190 $table->head
= array(get_string('step', 'webservice'), get_string('status'),
8191 get_string('description'));
8192 $table->colclasses
= array('leftalign step', 'leftalign status', 'leftalign description');
8193 $table->id
= 'userasclients';
8194 $table->attributes
['class'] = 'admintable wsoverview generaltable';
8195 $table->data
= array();
8197 $return .= $brtag . get_string('userasclientsdescription', 'webservice') .
8200 /// 1. Enable Web Services
8202 $url = new moodle_url("/admin/search.php?query=enablewebservices");
8203 $row[0] = "1. " . html_writer
::tag('a', get_string('enablews', 'webservice'),
8204 array('href' => $url));
8205 $status = html_writer
::tag('span', get_string('no'), array('class' => 'statuscritical'));
8206 if ($CFG->enablewebservices
) {
8207 $status = get_string('yes');
8210 $row[2] = get_string('enablewsdescription', 'webservice');
8211 $table->data
[] = $row;
8213 /// 2. Enable protocols
8215 $url = new moodle_url("/admin/settings.php?section=webserviceprotocols");
8216 $row[0] = "2. " . html_writer
::tag('a', get_string('enableprotocols', 'webservice'),
8217 array('href' => $url));
8218 $status = html_writer
::tag('span', get_string('none'), array('class' => 'statuscritical'));
8219 //retrieve activated protocol
8220 $active_protocols = empty($CFG->webserviceprotocols
) ?
8221 array() : explode(',', $CFG->webserviceprotocols
);
8222 if (!empty($active_protocols)) {
8224 foreach ($active_protocols as $protocol) {
8225 $status .= $protocol . $brtag;
8229 $row[2] = get_string('enableprotocolsdescription', 'webservice');
8230 $table->data
[] = $row;
8233 /// 3. Select a web service
8235 $url = new moodle_url("/admin/settings.php?section=externalservices");
8236 $row[0] = "3. " . html_writer
::tag('a', get_string('selectservice', 'webservice'),
8237 array('href' => $url));
8239 $row[2] = get_string('createserviceforusersdescription', 'webservice');
8240 $table->data
[] = $row;
8242 /// 4. Add functions
8244 $url = new moodle_url("/admin/settings.php?section=externalservices");
8245 $row[0] = "4. " . html_writer
::tag('a', get_string('addfunctions', 'webservice'),
8246 array('href' => $url));
8248 $row[2] = get_string('addfunctionsdescription', 'webservice');
8249 $table->data
[] = $row;
8251 /// 5. Add capability to users
8253 $url = new moodle_url("/admin/roles/check.php?contextid=1");
8254 $row[0] = "5. " . html_writer
::tag('a', get_string('addcapabilitytousers', 'webservice'),
8255 array('href' => $url));
8257 $row[2] = get_string('addcapabilitytousersdescription', 'webservice');
8258 $table->data
[] = $row;
8260 /// 6. Test the service
8262 $url = new moodle_url("/admin/webservice/testclient.php");
8263 $row[0] = "6. " . html_writer
::tag('a', get_string('testwithtestclient', 'webservice'),
8264 array('href' => $url));
8266 $row[2] = get_string('testauserwithtestclientdescription', 'webservice');
8267 $table->data
[] = $row;
8269 $return .= html_writer
::table($table);
8271 return highlight($query, $return);
8278 * Special class for web service protocol administration.
8280 * @author Petr Skoda (skodak)
8282 class admin_setting_managewebserviceprotocols
extends admin_setting
{
8285 * Calls parent::__construct with specific arguments
8287 public function __construct() {
8288 $this->nosave
= true;
8289 parent
::__construct('webservicesui', get_string('manageprotocols', 'webservice'), '', '');
8293 * Always returns true, does nothing
8297 public function get_setting() {
8302 * Always returns true, does nothing
8306 public function get_defaultsetting() {
8311 * Always returns '', does not write anything
8313 * @return string Always returns ''
8315 public function write_setting($data) {
8316 // do not write any setting
8321 * Checks if $query is one of the available webservices
8323 * @param string $query The string to search for
8324 * @return bool Returns true if found, false if not
8326 public function is_related($query) {
8327 if (parent
::is_related($query)) {
8331 $protocols = core_component
::get_plugin_list('webservice');
8332 foreach ($protocols as $protocol=>$location) {
8333 if (strpos($protocol, $query) !== false) {
8336 $protocolstr = get_string('pluginname', 'webservice_'.$protocol);
8337 if (strpos(core_text
::strtolower($protocolstr), $query) !== false) {
8345 * Builds the XHTML to display the control
8347 * @param string $data Unused
8348 * @param string $query
8351 public function output_html($data, $query='') {
8352 global $CFG, $OUTPUT;
8355 $stradministration = get_string('administration');
8356 $strsettings = get_string('settings');
8357 $stredit = get_string('edit');
8358 $strprotocol = get_string('protocol', 'webservice');
8359 $strenable = get_string('enable');
8360 $strdisable = get_string('disable');
8361 $strversion = get_string('version');
8363 $protocols_available = core_component
::get_plugin_list('webservice');
8364 $active_protocols = empty($CFG->webserviceprotocols
) ?
array() : explode(',', $CFG->webserviceprotocols
);
8365 ksort($protocols_available);
8367 foreach ($active_protocols as $key=>$protocol) {
8368 if (empty($protocols_available[$protocol])) {
8369 unset($active_protocols[$key]);
8373 $return = $OUTPUT->heading(get_string('actwebserviceshhdr', 'webservice'), 3, 'main');
8374 $return .= $OUTPUT->box_start('generalbox webservicesui');
8376 $table = new html_table();
8377 $table->head
= array($strprotocol, $strversion, $strenable, $strsettings);
8378 $table->colclasses
= array('leftalign', 'centeralign', 'centeralign', 'centeralign', 'centeralign');
8379 $table->id
= 'webserviceprotocols';
8380 $table->attributes
['class'] = 'admintable generaltable';
8381 $table->data
= array();
8383 // iterate through auth plugins and add to the display table
8384 $url = "$CFG->wwwroot/$CFG->admin/webservice/protocols.php?sesskey=" . sesskey();
8385 foreach ($protocols_available as $protocol => $location) {
8386 $name = get_string('pluginname', 'webservice_'.$protocol);
8388 $plugin = new stdClass();
8389 if (file_exists($CFG->dirroot
.'/webservice/'.$protocol.'/version.php')) {
8390 include($CFG->dirroot
.'/webservice/'.$protocol.'/version.php');
8392 $version = isset($plugin->version
) ?
$plugin->version
: '';
8395 if (in_array($protocol, $active_protocols)) {
8396 $hideshow = "<a href=\"$url&action=disable&webservice=$protocol\">";
8397 $hideshow .= "<img src=\"" . $OUTPUT->pix_url('t/hide') . "\" class=\"iconsmall\" alt=\"$strdisable\" /></a>";
8398 $displayname = "<span>$name</span>";
8400 $hideshow = "<a href=\"$url&action=enable&webservice=$protocol\">";
8401 $hideshow .= "<img src=\"" . $OUTPUT->pix_url('t/show') . "\" class=\"iconsmall\" alt=\"$strenable\" /></a>";
8402 $displayname = "<span class=\"dimmed_text\">$name</span>";
8406 if (file_exists($CFG->dirroot
.'/webservice/'.$protocol.'/settings.php')) {
8407 $settings = "<a href=\"settings.php?section=webservicesetting$protocol\">$strsettings</a>";
8412 // add a row to the table
8413 $table->data
[] = array($displayname, $version, $hideshow, $settings);
8415 $return .= html_writer
::table($table);
8416 $return .= get_string('configwebserviceplugins', 'webservice');
8417 $return .= $OUTPUT->box_end();
8419 return highlight($query, $return);
8425 * Special class for web service token administration.
8427 * @author Jerome Mouneyrac
8429 class admin_setting_managewebservicetokens
extends admin_setting
{
8432 * Calls parent::__construct with specific arguments
8434 public function __construct() {
8435 $this->nosave
= true;
8436 parent
::__construct('webservicestokenui', get_string('managetokens', 'webservice'), '', '');
8440 * Always returns true, does nothing
8444 public function get_setting() {
8449 * Always returns true, does nothing
8453 public function get_defaultsetting() {
8458 * Always returns '', does not write anything
8460 * @return string Always returns ''
8462 public function write_setting($data) {
8463 // do not write any setting
8468 * Builds the XHTML to display the control
8470 * @param string $data Unused
8471 * @param string $query
8474 public function output_html($data, $query='') {
8475 global $CFG, $OUTPUT, $DB, $USER;
8478 $stroperation = get_string('operation', 'webservice');
8479 $strtoken = get_string('token', 'webservice');
8480 $strservice = get_string('service', 'webservice');
8481 $struser = get_string('user');
8482 $strcontext = get_string('context', 'webservice');
8483 $strvaliduntil = get_string('validuntil', 'webservice');
8484 $striprestriction = get_string('iprestriction', 'webservice');
8486 $return = $OUTPUT->box_start('generalbox webservicestokenui');
8488 $table = new html_table();
8489 $table->head
= array($strtoken, $struser, $strservice, $striprestriction, $strvaliduntil, $stroperation);
8490 $table->colclasses
= array('leftalign', 'leftalign', 'leftalign', 'centeralign', 'centeralign', 'centeralign');
8491 $table->id
= 'webservicetokens';
8492 $table->attributes
['class'] = 'admintable generaltable';
8493 $table->data
= array();
8495 $tokenpageurl = "$CFG->wwwroot/$CFG->admin/webservice/tokens.php?sesskey=" . sesskey();
8497 //TODO: in order to let the administrator delete obsolete token, split this request in multiple request or use LEFT JOIN
8499 //here retrieve token list (including linked users firstname/lastname and linked services name)
8500 $sql = "SELECT t.id, t.token, u.id AS userid, u.firstname, u.lastname, s.name, t.iprestriction, t.validuntil, s.id AS serviceid
8501 FROM {external_tokens} t, {user} u, {external_services} s
8502 WHERE t.creatorid=? AND t.tokentype = ? AND s.id = t.externalserviceid AND t.userid = u.id";
8503 $tokens = $DB->get_records_sql($sql, array($USER->id
, EXTERNAL_TOKEN_PERMANENT
));
8504 if (!empty($tokens)) {
8505 foreach ($tokens as $token) {
8506 //TODO: retrieve context
8508 $delete = "<a href=\"".$tokenpageurl."&action=delete&tokenid=".$token->id
."\">";
8509 $delete .= get_string('delete')."</a>";
8512 if (!empty($token->validuntil
)) {
8513 $validuntil = userdate($token->validuntil
, get_string('strftimedatetime', 'langconfig'));
8516 $iprestriction = '';
8517 if (!empty($token->iprestriction
)) {
8518 $iprestriction = $token->iprestriction
;
8521 $userprofilurl = new moodle_url('/user/profile.php?id='.$token->userid
);
8522 $useratag = html_writer
::start_tag('a', array('href' => $userprofilurl));
8523 $useratag .= $token->firstname
." ".$token->lastname
;
8524 $useratag .= html_writer
::end_tag('a');
8526 //check user missing capabilities
8527 require_once($CFG->dirroot
. '/webservice/lib.php');
8528 $webservicemanager = new webservice();
8529 $usermissingcaps = $webservicemanager->get_missing_capabilities_by_users(
8530 array(array('id' => $token->userid
)), $token->serviceid
);
8532 if (!is_siteadmin($token->userid
) and
8533 array_key_exists($token->userid
, $usermissingcaps)) {
8534 $missingcapabilities = implode(', ',
8535 $usermissingcaps[$token->userid
]);
8536 if (!empty($missingcapabilities)) {
8537 $useratag .= html_writer
::tag('div',
8538 get_string('usermissingcaps', 'webservice',
8539 $missingcapabilities)
8540 . ' ' . $OUTPUT->help_icon('missingcaps', 'webservice'),
8541 array('class' => 'missingcaps'));
8545 $table->data
[] = array($token->token
, $useratag, $token->name
, $iprestriction, $validuntil, $delete);
8548 $return .= html_writer
::table($table);
8550 $return .= get_string('notoken', 'webservice');
8553 $return .= $OUTPUT->box_end();
8554 // add a token to the table
8555 $return .= "<a href=\"".$tokenpageurl."&action=create\">";
8556 $return .= get_string('add')."</a>";
8558 return highlight($query, $return);
8566 * @copyright 2010 Sam Hemelryk
8567 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
8569 class admin_setting_configcolourpicker
extends admin_setting
{
8572 * Information for previewing the colour
8576 protected $previewconfig = null;
8579 * Use default when empty.
8581 protected $usedefaultwhenempty = true;
8585 * @param string $name
8586 * @param string $visiblename
8587 * @param string $description
8588 * @param string $defaultsetting
8589 * @param array $previewconfig Array('selector'=>'.some .css .selector','style'=>'backgroundColor');
8591 public function __construct($name, $visiblename, $description, $defaultsetting, array $previewconfig = null,
8592 $usedefaultwhenempty = true) {
8593 $this->previewconfig
= $previewconfig;
8594 $this->usedefaultwhenempty
= $usedefaultwhenempty;
8595 parent
::__construct($name, $visiblename, $description, $defaultsetting);
8599 * Return the setting
8601 * @return mixed returns config if successful else null
8603 public function get_setting() {
8604 return $this->config_read($this->name
);
8610 * @param string $data
8613 public function write_setting($data) {
8614 $data = $this->validate($data);
8615 if ($data === false) {
8616 return get_string('validateerror', 'admin');
8618 return ($this->config_write($this->name
, $data) ?
'' : get_string('errorsetting', 'admin'));
8622 * Validates the colour that was entered by the user
8624 * @param string $data
8625 * @return string|false
8627 protected function validate($data) {
8629 * List of valid HTML colour names
8633 $colornames = array(
8634 'aliceblue', 'antiquewhite', 'aqua', 'aquamarine', 'azure',
8635 'beige', 'bisque', 'black', 'blanchedalmond', 'blue',
8636 'blueviolet', 'brown', 'burlywood', 'cadetblue', 'chartreuse',
8637 'chocolate', 'coral', 'cornflowerblue', 'cornsilk', 'crimson',
8638 'cyan', 'darkblue', 'darkcyan', 'darkgoldenrod', 'darkgray',
8639 'darkgrey', 'darkgreen', 'darkkhaki', 'darkmagenta',
8640 'darkolivegreen', 'darkorange', 'darkorchid', 'darkred',
8641 'darksalmon', 'darkseagreen', 'darkslateblue', 'darkslategray',
8642 'darkslategrey', 'darkturquoise', 'darkviolet', 'deeppink',
8643 'deepskyblue', 'dimgray', 'dimgrey', 'dodgerblue', 'firebrick',
8644 'floralwhite', 'forestgreen', 'fuchsia', 'gainsboro',
8645 'ghostwhite', 'gold', 'goldenrod', 'gray', 'grey', 'green',
8646 'greenyellow', 'honeydew', 'hotpink', 'indianred', 'indigo',
8647 'ivory', 'khaki', 'lavender', 'lavenderblush', 'lawngreen',
8648 'lemonchiffon', 'lightblue', 'lightcoral', 'lightcyan',
8649 'lightgoldenrodyellow', 'lightgray', 'lightgrey', 'lightgreen',
8650 'lightpink', 'lightsalmon', 'lightseagreen', 'lightskyblue',
8651 'lightslategray', 'lightslategrey', 'lightsteelblue', 'lightyellow',
8652 'lime', 'limegreen', 'linen', 'magenta', 'maroon',
8653 'mediumaquamarine', 'mediumblue', 'mediumorchid', 'mediumpurple',
8654 'mediumseagreen', 'mediumslateblue', 'mediumspringgreen',
8655 'mediumturquoise', 'mediumvioletred', 'midnightblue', 'mintcream',
8656 'mistyrose', 'moccasin', 'navajowhite', 'navy', 'oldlace', 'olive',
8657 'olivedrab', 'orange', 'orangered', 'orchid', 'palegoldenrod',
8658 'palegreen', 'paleturquoise', 'palevioletred', 'papayawhip',
8659 'peachpuff', 'peru', 'pink', 'plum', 'powderblue', 'purple', 'red',
8660 'rosybrown', 'royalblue', 'saddlebrown', 'salmon', 'sandybrown',
8661 'seagreen', 'seashell', 'sienna', 'silver', 'skyblue', 'slateblue',
8662 'slategray', 'slategrey', 'snow', 'springgreen', 'steelblue', 'tan',
8663 'teal', 'thistle', 'tomato', 'turquoise', 'violet', 'wheat', 'white',
8664 'whitesmoke', 'yellow', 'yellowgreen'
8667 if (preg_match('/^#?([[:xdigit:]]{3}){1,2}$/', $data)) {
8668 if (strpos($data, '#')!==0) {
8672 } else if (in_array(strtolower($data), $colornames)) {
8674 } else if (preg_match('/rgb\(\d{0,3}%?\, ?\d{0,3}%?, ?\d{0,3}%?\)/i', $data)) {
8676 } else if (preg_match('/rgba\(\d{0,3}%?\, ?\d{0,3}%?, ?\d{0,3}%?\, ?\d(\.\d)?\)/i', $data)) {
8678 } else if (preg_match('/hsl\(\d{0,3}\, ?\d{0,3}%, ?\d{0,3}%\)/i', $data)) {
8680 } else if (preg_match('/hsla\(\d{0,3}\, ?\d{0,3}%,\d{0,3}%\, ?\d(\.\d)?\)/i', $data)) {
8682 } else if (($data == 'transparent') ||
($data == 'currentColor') ||
($data == 'inherit')) {
8684 } else if (empty($data)) {
8685 if ($this->usedefaultwhenempty
){
8686 return $this->defaultsetting
;
8696 * Generates the HTML for the setting
8698 * @global moodle_page $PAGE
8699 * @global core_renderer $OUTPUT
8700 * @param string $data
8701 * @param string $query
8703 public function output_html($data, $query = '') {
8704 global $PAGE, $OUTPUT;
8705 $PAGE->requires
->js_init_call('M.util.init_colour_picker', array($this->get_id(), $this->previewconfig
));
8706 $content = html_writer
::start_tag('div', array('class'=>'form-colourpicker defaultsnext'));
8707 $content .= html_writer
::tag('div', $OUTPUT->pix_icon('i/loading', get_string('loading', 'admin'), 'moodle', array('class'=>'loadingicon')), array('class'=>'admin_colourpicker clearfix'));
8708 $content .= html_writer
::empty_tag('input', array('type'=>'text','id'=>$this->get_id(), 'name'=>$this->get_full_name(), 'value'=>$data, 'size'=>'12'));
8709 if (!empty($this->previewconfig
)) {
8710 $content .= html_writer
::empty_tag('input', array('type'=>'button','id'=>$this->get_id().'_preview', 'value'=>get_string('preview'), 'class'=>'admin_colourpicker_preview'));
8712 $content .= html_writer
::end_tag('div');
8713 return format_admin_setting($this, $this->visiblename
, $content, $this->description
, true, '', $this->get_defaultsetting(), $query);
8719 * Class used for uploading of one file into file storage,
8720 * the file name is stored in config table.
8722 * Please note you need to implement your own '_pluginfile' callback function,
8723 * this setting only stores the file, it does not deal with file serving.
8725 * @copyright 2013 Petr Skoda {@link http://skodak.org}
8726 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
8728 class admin_setting_configstoredfile
extends admin_setting
{
8729 /** @var array file area options - should be one file only */
8731 /** @var string name of the file area */
8732 protected $filearea;
8733 /** @var int intemid */
8735 /** @var string used for detection of changes */
8736 protected $oldhashes;
8739 * Create new stored file setting.
8741 * @param string $name low level setting name
8742 * @param string $visiblename human readable setting name
8743 * @param string $description description of setting
8744 * @param mixed $filearea file area for file storage
8745 * @param int $itemid itemid for file storage
8746 * @param array $options file area options
8748 public function __construct($name, $visiblename, $description, $filearea, $itemid = 0, array $options = null) {
8749 parent
::__construct($name, $visiblename, $description, '');
8750 $this->filearea
= $filearea;
8751 $this->itemid
= $itemid;
8752 $this->options
= (array)$options;
8756 * Applies defaults and returns all options.
8759 protected function get_options() {
8762 require_once("$CFG->libdir/filelib.php");
8763 require_once("$CFG->dirroot/repository/lib.php");
8765 'mainfile' => '', 'subdirs' => 0, 'maxbytes' => -1, 'maxfiles' => 1,
8766 'accepted_types' => '*', 'return_types' => FILE_INTERNAL
, 'areamaxbytes' => FILE_AREA_MAX_BYTES_UNLIMITED
,
8767 'context' => context_system
::instance());
8768 foreach($this->options
as $k => $v) {
8775 public function get_setting() {
8776 return $this->config_read($this->name
);
8779 public function write_setting($data) {
8782 // Let's not deal with validation here, this is for admins only.
8783 $current = $this->get_setting();
8784 if (empty($data) && $current === null) {
8785 // This will be the case when applying default settings (installation).
8786 return ($this->config_write($this->name
, '') ?
'' : get_string('errorsetting', 'admin'));
8787 } else if (!is_number($data)) {
8788 // Draft item id is expected here!
8789 return get_string('errorsetting', 'admin');
8792 $options = $this->get_options();
8793 $fs = get_file_storage();
8794 $component = is_null($this->plugin
) ?
'core' : $this->plugin
;
8796 $this->oldhashes
= null;
8798 $hash = sha1('/'.$options['context']->id
.'/'.$component.'/'.$this->filearea
.'/'.$this->itemid
.$current);
8799 if ($file = $fs->get_file_by_hash($hash)) {
8800 $this->oldhashes
= $file->get_contenthash().$file->get_pathnamehash();
8805 if ($fs->file_exists($options['context']->id
, $component, $this->filearea
, $this->itemid
, '/', '.')) {
8806 // Make sure the settings form was not open for more than 4 days and draft areas deleted in the meantime.
8807 // But we can safely ignore that if the destination area is empty, so that the user is not prompt
8808 // with an error because the draft area does not exist, as he did not use it.
8809 $usercontext = context_user
::instance($USER->id
);
8810 if (!$fs->file_exists($usercontext->id
, 'user', 'draft', $data, '/', '.') && $current !== '') {
8811 return get_string('errorsetting', 'admin');
8815 file_save_draft_area_files($data, $options['context']->id
, $component, $this->filearea
, $this->itemid
, $options);
8816 $files = $fs->get_area_files($options['context']->id
, $component, $this->filearea
, $this->itemid
, 'sortorder,filepath,filename', false);
8820 /** @var stored_file $file */
8821 $file = reset($files);
8822 $filepath = $file->get_filepath().$file->get_filename();
8825 return ($this->config_write($this->name
, $filepath) ?
'' : get_string('errorsetting', 'admin'));
8828 public function post_write_settings($original) {
8829 $options = $this->get_options();
8830 $fs = get_file_storage();
8831 $component = is_null($this->plugin
) ?
'core' : $this->plugin
;
8833 $current = $this->get_setting();
8836 $hash = sha1('/'.$options['context']->id
.'/'.$component.'/'.$this->filearea
.'/'.$this->itemid
.$current);
8837 if ($file = $fs->get_file_by_hash($hash)) {
8838 $newhashes = $file->get_contenthash().$file->get_pathnamehash();
8843 if ($this->oldhashes
=== $newhashes) {
8844 $this->oldhashes
= null;
8847 $this->oldhashes
= null;
8849 $callbackfunction = $this->updatedcallback
;
8850 if (!empty($callbackfunction) and function_exists($callbackfunction)) {
8851 $callbackfunction($this->get_full_name());
8856 public function output_html($data, $query = '') {
8859 $options = $this->get_options();
8860 $id = $this->get_id();
8861 $elname = $this->get_full_name();
8862 $draftitemid = file_get_submitted_draft_itemid($elname);
8863 $component = is_null($this->plugin
) ?
'core' : $this->plugin
;
8864 file_prepare_draft_area($draftitemid, $options['context']->id
, $component, $this->filearea
, $this->itemid
, $options);
8866 // Filemanager form element implementation is far from optimal, we need to rework this if we ever fix it...
8867 require_once("$CFG->dirroot/lib/form/filemanager.php");
8869 $fmoptions = new stdClass();
8870 $fmoptions->mainfile
= $options['mainfile'];
8871 $fmoptions->maxbytes
= $options['maxbytes'];
8872 $fmoptions->maxfiles
= $options['maxfiles'];
8873 $fmoptions->client_id
= uniqid();
8874 $fmoptions->itemid
= $draftitemid;
8875 $fmoptions->subdirs
= $options['subdirs'];
8876 $fmoptions->target
= $id;
8877 $fmoptions->accepted_types
= $options['accepted_types'];
8878 $fmoptions->return_types
= $options['return_types'];
8879 $fmoptions->context
= $options['context'];
8880 $fmoptions->areamaxbytes
= $options['areamaxbytes'];
8882 $fm = new form_filemanager($fmoptions);
8883 $output = $PAGE->get_renderer('core', 'files');
8884 $html = $output->render($fm);
8886 $html .= '<input value="'.$draftitemid.'" name="'.$elname.'" type="hidden" />';
8887 $html .= '<input value="" id="'.$id.'" type="hidden" />';
8889 return format_admin_setting($this, $this->visiblename
,
8890 '<div class="form-filemanager">'.$html.'</div>', $this->description
, true, '', '', $query);
8896 * Administration interface for user specified regular expressions for device detection.
8898 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
8900 class admin_setting_devicedetectregex
extends admin_setting
{
8903 * Calls parent::__construct with specific args
8905 * @param string $name
8906 * @param string $visiblename
8907 * @param string $description
8908 * @param mixed $defaultsetting
8910 public function __construct($name, $visiblename, $description, $defaultsetting = '') {
8912 parent
::__construct($name, $visiblename, $description, $defaultsetting);
8916 * Return the current setting(s)
8918 * @return array Current settings array
8920 public function get_setting() {
8923 $config = $this->config_read($this->name
);
8924 if (is_null($config)) {
8928 return $this->prepare_form_data($config);
8932 * Save selected settings
8934 * @param array $data Array of settings to save
8937 public function write_setting($data) {
8942 if ($this->config_write($this->name
, $this->process_form_data($data))) {
8943 return ''; // success
8945 return get_string('errorsetting', 'admin') . $this->visiblename
. html_writer
::empty_tag('br');
8950 * Return XHTML field(s) for regexes
8952 * @param array $data Array of options to set in HTML
8953 * @return string XHTML string for the fields and wrapping div(s)
8955 public function output_html($data, $query='') {
8958 $out = html_writer
::start_tag('table', array('class' => 'generaltable'));
8959 $out .= html_writer
::start_tag('thead');
8960 $out .= html_writer
::start_tag('tr');
8961 $out .= html_writer
::tag('th', get_string('devicedetectregexexpression', 'admin'));
8962 $out .= html_writer
::tag('th', get_string('devicedetectregexvalue', 'admin'));
8963 $out .= html_writer
::end_tag('tr');
8964 $out .= html_writer
::end_tag('thead');
8965 $out .= html_writer
::start_tag('tbody');
8970 $looplimit = (count($data)/2)+
1;
8973 for ($i=0; $i<$looplimit; $i++
) {
8974 $out .= html_writer
::start_tag('tr');
8976 $expressionname = 'expression'.$i;
8978 if (!empty($data[$expressionname])){
8979 $expression = $data[$expressionname];
8984 $out .= html_writer
::tag('td',
8985 html_writer
::empty_tag('input',
8988 'class' => 'form-text',
8989 'name' => $this->get_full_name().'[expression'.$i.']',
8990 'value' => $expression,
8992 ), array('class' => 'c'.$i)
8995 $valuename = 'value'.$i;
8997 if (!empty($data[$valuename])){
8998 $value = $data[$valuename];
9003 $out .= html_writer
::tag('td',
9004 html_writer
::empty_tag('input',
9007 'class' => 'form-text',
9008 'name' => $this->get_full_name().'[value'.$i.']',
9011 ), array('class' => 'c'.$i)
9014 $out .= html_writer
::end_tag('tr');
9017 $out .= html_writer
::end_tag('tbody');
9018 $out .= html_writer
::end_tag('table');
9020 return format_admin_setting($this, $this->visiblename
, $out, $this->description
, false, '', null, $query);
9024 * Converts the string of regexes
9026 * @see self::process_form_data()
9027 * @param $regexes string of regexes
9028 * @return array of form fields and their values
9030 protected function prepare_form_data($regexes) {
9032 $regexes = json_decode($regexes);
9038 foreach ($regexes as $value => $regex) {
9039 $expressionname = 'expression'.$i;
9040 $valuename = 'value'.$i;
9042 $form[$expressionname] = $regex;
9043 $form[$valuename] = $value;
9051 * Converts the data from admin settings form into a string of regexes
9053 * @see self::prepare_form_data()
9054 * @param array $data array of admin form fields and values
9055 * @return false|string of regexes
9057 protected function process_form_data(array $form) {
9059 $count = count($form); // number of form field values
9062 // we must get five fields per expression
9067 for ($i = 0; $i < $count / 2; $i++
) {
9068 $expressionname = "expression".$i;
9069 $valuename = "value".$i;
9071 $expression = trim($form['expression'.$i]);
9072 $value = trim($form['value'.$i]);
9074 if (empty($expression)){
9078 $regexes[$value] = $expression;
9081 $regexes = json_encode($regexes);
9088 * Multiselect for current modules
9090 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
9092 class admin_setting_configmultiselect_modules
extends admin_setting_configmultiselect
{
9093 private $excludesystem;
9096 * Calls parent::__construct - note array $choices is not required
9098 * @param string $name setting name
9099 * @param string $visiblename localised setting name
9100 * @param string $description setting description
9101 * @param array $defaultsetting a plain array of default module ids
9102 * @param bool $excludesystem If true, excludes modules with 'system' archetype
9104 public function __construct($name, $visiblename, $description, $defaultsetting = array(),
9105 $excludesystem = true) {
9106 parent
::__construct($name, $visiblename, $description, $defaultsetting, null);
9107 $this->excludesystem
= $excludesystem;
9111 * Loads an array of current module choices
9113 * @return bool always return true
9115 public function load_choices() {
9116 if (is_array($this->choices
)) {
9119 $this->choices
= array();
9122 $records = $DB->get_records('modules', array('visible'=>1), 'name');
9123 foreach ($records as $record) {
9124 // Exclude modules if the code doesn't exist
9125 if (file_exists("$CFG->dirroot/mod/$record->name/lib.php")) {
9126 // Also exclude system modules (if specified)
9127 if (!($this->excludesystem
&&
9128 plugin_supports('mod', $record->name
, FEATURE_MOD_ARCHETYPE
) ===
9129 MOD_ARCHETYPE_SYSTEM
)) {
9130 $this->choices
[$record->id
] = $record->name
;
9139 * Admin setting to show if a php extension is enabled or not.
9141 * @copyright 2013 Damyon Wiese
9142 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
9144 class admin_setting_php_extension_enabled
extends admin_setting
{
9146 /** @var string The name of the extension to check for */
9150 * Calls parent::__construct with specific arguments
9152 public function __construct($name, $visiblename, $description, $extension) {
9153 $this->extension
= $extension;
9154 $this->nosave
= true;
9155 parent
::__construct($name, $visiblename, $description, '');
9159 * Always returns true, does nothing
9163 public function get_setting() {
9168 * Always returns true, does nothing
9172 public function get_defaultsetting() {
9177 * Always returns '', does not write anything
9179 * @return string Always returns ''
9181 public function write_setting($data) {
9182 // Do not write any setting.
9187 * Outputs the html for this setting.
9188 * @return string Returns an XHTML string
9190 public function output_html($data, $query='') {
9194 if (!extension_loaded($this->extension
)) {
9195 $warning = $OUTPUT->pix_icon('i/warning', '', '', array('role' => 'presentation')) . ' ' . $this->description
;
9197 $o .= format_admin_setting($this, $this->visiblename
, $warning);
9204 * Server timezone setting.
9206 * @copyright 2015 Totara Learning Solutions Ltd {@link http://www.totaralms.com/}
9207 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
9208 * @author Petr Skoda <petr.skoda@totaralms.com>
9210 class admin_setting_servertimezone
extends admin_setting_configselect
{
9214 public function __construct() {
9215 $default = core_date
::get_default_php_timezone();
9216 if ($default === 'UTC') {
9217 // Nobody really wants UTC, so instead default selection to the country that is confused by the UTC the most.
9218 $default = 'Europe/London';
9221 parent
::__construct('timezone',
9222 new lang_string('timezone', 'core_admin'),
9223 new lang_string('configtimezone', 'core_admin'), $default, null);
9227 * Lazy load timezone options.
9228 * @return bool true if loaded, false if error
9230 public function load_choices() {
9232 if (is_array($this->choices
)) {
9236 $current = isset($CFG->timezone
) ?
$CFG->timezone
: null;
9237 $this->choices
= core_date
::get_list_of_timezones($current, false);
9238 if ($current == 99) {
9239 // Do not show 99 unless it is current value, we want to get rid of it over time.
9240 $this->choices
['99'] = new lang_string('timezonephpdefault', 'core_admin',
9241 core_date
::get_default_php_timezone());
9249 * Forced user timezone setting.
9251 * @copyright 2015 Totara Learning Solutions Ltd {@link http://www.totaralms.com/}
9252 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
9253 * @author Petr Skoda <petr.skoda@totaralms.com>
9255 class admin_setting_forcetimezone
extends admin_setting_configselect
{
9259 public function __construct() {
9260 parent
::__construct('forcetimezone',
9261 new lang_string('forcetimezone', 'core_admin'),
9262 new lang_string('helpforcetimezone', 'core_admin'), '99', null);
9266 * Lazy load timezone options.
9267 * @return bool true if loaded, false if error
9269 public function load_choices() {
9271 if (is_array($this->choices
)) {
9275 $current = isset($CFG->forcetimezone
) ?
$CFG->forcetimezone
: null;
9276 $this->choices
= core_date
::get_list_of_timezones($current, true);
9277 $this->choices
['99'] = new lang_string('timezonenotforced', 'core_admin');