Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.2.x will end 22 April 2024 (12 months).
  • Bug fixes for security issues in 4.2.x will end 7 October 2024 (18 months).
  • PHP version: minimum PHP 8.0.0 Note: minimum PHP version has increased since Moodle 4.1. PHP 8.1.x is supported too.

Differences Between: [Versions 310 and 402] [Versions 311 and 402] [Versions 39 and 402] [Versions 400 and 402] [Versions 401 and 402] [Versions 402 and 403]

   1  <?php
   2  
   3  // * Miscellaneous settings
   4  
   5  if ($hassiteconfig) { // speedup for non-admins, add all caps used on this page
   6  
   7      // Experimental settings page
   8      $ADMIN->add('development', new admin_category('experimental', new lang_string('experimental','admin')));
   9  
  10      $temp = new admin_settingpage('experimentalsettings', new lang_string('experimentalsettings', 'admin'));
  11      //TODO: Re-enable cc-import once re-implemented in 2.0.x
  12      //$temp->add(new admin_setting_configcheckbox('enableimsccimport', new lang_string('enable_cc_import', 'imscc'), new lang_string('enable_cc_import_description', 'imscc'), 0));
  13  
  14      $temp->add(new admin_setting_configcheckbox('dndallowtextandlinks', new lang_string('dndallowtextandlinks', 'admin'), new lang_string('configdndallowtextandlinks', 'admin'), 0));
  15  
  16      $temp->add(new admin_setting_configexecutable('pathtosassc', new lang_string('pathtosassc', 'admin'), new lang_string('pathtosassc_help', 'admin'), ''));
  17  
  18      $temp->add(new admin_setting_configcheckbox('contextlocking', new lang_string('contextlocking', 'core_admin'),
  19          new lang_string('contextlocking_desc', 'core_admin'), 0));
  20  
  21      $temp->add(new admin_setting_configcheckbox(
  22              'contextlockappliestoadmin',
  23              new lang_string('contextlockappliestoadmin', 'core_admin'),
  24              new lang_string('contextlockappliestoadmin_desc', 'core_admin'),
  25              1
  26          ));
  27  
  28      $temp->add(new admin_setting_configcheckbox('forceclean', new lang_string('forceclean', 'core_admin'),
  29          new lang_string('forceclean_desc', 'core_admin'), 0));
  30  
  31      // Relative course dates mode setting.
  32      $temp->add(new admin_setting_configcheckbox('enablecourserelativedates',
  33          new lang_string('enablecourserelativedates', 'core_admin'),
  34          new lang_string('enablecourserelativedates_desc', 'core_admin'), 0));
  35  
  36      // Sharing to MoodleNet setting.
  37      $temp->add(new admin_setting_configcheckbox('enablesharingtomoodlenet',
  38          new lang_string('enablesharingtomoodlenet', 'core_admin'),
  39          new lang_string('enablesharingtomoodlenet_desc', 'core_admin'), 0));
  40  
  41      $ADMIN->add('experimental', $temp);
  42  
  43      // "debugging" settingpage
  44      $temp = new admin_settingpage('debugging', new lang_string('debugging', 'admin'));
  45      $temp->add(new admin_setting_special_debug());
  46      $temp->add(new admin_setting_configcheckbox('debugdisplay', new lang_string('debugdisplay', 'admin'),
  47          new lang_string('configdebugdisplay', 'admin'), 0));
  48      $temp->add(new admin_setting_configcheckbox('perfdebug', new lang_string('perfdebug', 'admin'), new lang_string('configperfdebug', 'admin'), '7', '15', '7'));
  49      $temp->add(new admin_setting_configcheckbox('debugstringids', new lang_string('debugstringids', 'admin'), new lang_string('debugstringids_desc', 'admin'), 0));
  50      $temp->add(new admin_setting_configselect('debugsqltrace',
  51              new lang_string('debugsqltrace', 'admin'),
  52              new lang_string('debugsqltrace_desc', 'admin'), 0, array(
  53                 0 => new lang_string('disabled', 'admin'),
  54                 1 => new lang_string('debugsqltrace1', 'admin'),
  55                 2 => new lang_string('debugsqltrace2', 'admin'),
  56               100 => new lang_string('debugsqltrace100', 'admin'))));
  57      $temp->add(new admin_setting_configcheckbox('debugvalidators', new lang_string('debugvalidators', 'admin'), new lang_string('configdebugvalidators', 'admin'), 0));
  58      $temp->add(new admin_setting_configcheckbox('debugpageinfo', new lang_string('debugpageinfo', 'admin'), new lang_string('configdebugpageinfo', 'admin'), 0));
  59      $temp->add(new admin_setting_configcheckbox('debugtemplateinfo', new lang_string('debugtemplateinfo', 'admin'), new lang_string('debugtemplateinfo_desc', 'admin'), 0));
  60      $ADMIN->add('development', $temp);
  61  
  62      // "Profiling" settingpage (conditionally if the 'xhprof' extension is available only).
  63      $xhprofenabled = extension_loaded('tideways_xhprof');
  64      $xhprofenabled = $xhprofenabled || extension_loaded('tideways');
  65      $xhprofenabled = $xhprofenabled || extension_loaded('xhprof');
  66      $temp = new admin_settingpage('profiling', new lang_string('profiling', 'admin'), 'moodle/site:config', !$xhprofenabled);
  67      // Main profiling switch.
  68      $temp->add(new admin_setting_configcheckbox('profilingenabled', new lang_string('profilingenabled', 'admin'), new lang_string('profilingenabled_help', 'admin'), false));
  69      // List of URLs that will be automatically profiled.
  70      $temp->add(new admin_setting_configtextarea('profilingincluded', new lang_string('profilingincluded', 'admin'), new lang_string('profilingincluded_help', 'admin'), ''));
  71      // List of URLs that won't be profiled ever.
  72      $temp->add(new admin_setting_configtextarea('profilingexcluded', new lang_string('profilingexcluded', 'admin'), new lang_string('profilingexcluded_help', 'admin'), ''));
  73      // Allow random profiling each XX requests.
  74      $temp->add(new admin_setting_configtext('profilingautofrec', new lang_string('profilingautofrec', 'admin'), new lang_string('profilingautofrec_help', 'admin'), 0, PARAM_INT));
  75      // Allow PROFILEME/DONTPROFILEME GPC.
  76      $temp->add(new admin_setting_configcheckbox('profilingallowme', new lang_string('profilingallowme', 'admin'), new lang_string('profilingallowme_help', 'admin'), false));
  77      // Allow PROFILEALL/PROFILEALLSTOP GPC.
  78      $temp->add(new admin_setting_configcheckbox('profilingallowall', new lang_string('profilingallowall', 'admin'), new lang_string('profilingallowall_help', 'admin'), false));
  79      $temp->add(new admin_setting_configtext('profilingslow', new lang_string('profilingslow', 'admin'),
  80          new lang_string('profilingslow_help', 'admin'), 0, PARAM_FLOAT));
  81      // TODO: Allow to skip PHP functions (XHPROF_FLAGS_NO_BUILTINS)
  82      // TODO: Allow to skip call_user functions (ignored_functions array)
  83      // Specify the life time (in minutes) of profiling runs.
  84      $temp->add(new admin_setting_configselect('profilinglifetime', new lang_string('profilinglifetime', 'admin'), new lang_string('profilinglifetime_help', 'admin'), 24*60, array(
  85                 0 => new lang_string('neverdeleteruns', 'admin'),
  86          30*24*60 => new lang_string('numdays', '', 30),
  87          15*24*60 => new lang_string('numdays', '', 15),
  88           7*24*60 => new lang_string('numdays', '', 7),
  89           4*24*60 => new lang_string('numdays', '', 4),
  90           2*24*60 => new lang_string('numdays', '', 2),
  91             24*60 => new lang_string('numhours', '', 24),
  92             16*80 => new lang_string('numhours', '', 16),
  93              8*60 => new lang_string('numhours', '', 8),
  94              4*60 => new lang_string('numhours', '', 4),
  95              2*60 => new lang_string('numhours', '', 2),
  96                60 => new lang_string('numminutes', '', 60),
  97                30 => new lang_string('numminutes', '', 30),
  98                15 => new lang_string('numminutes', '', 15))));
  99      // Define the prefix to be added to imported profiling runs.
 100      $temp->add(new admin_setting_configtext('profilingimportprefix',
 101              new lang_string('profilingimportprefix', 'admin'),
 102              new lang_string('profilingimportprefix_desc', 'admin'), '(I)', PARAM_TAG, 10));
 103  
 104      // Add the 'profiling' page to admin block.
 105      $ADMIN->add('development', $temp);
 106  
 107       // Web service test clients DO NOT COMMIT : THE EXTERNAL WEB PAGE IS NOT AN ADMIN PAGE !!!!!
 108      $ADMIN->add('development', new admin_externalpage('testclient', new lang_string('testclient', 'webservice'), "$CFG->wwwroot/$CFG->admin/webservice/testclient.php"));
 109  
 110  
 111      if ($CFG->mnet_dispatcher_mode !== 'off') {
 112          $ADMIN->add('development', new admin_externalpage('mnettestclient', new lang_string('testclient', 'mnet'), "$CFG->wwwroot/$CFG->admin/mnet/testclient.php"));
 113      }
 114  
 115      $ADMIN->add('development', new admin_externalpage('purgecaches', new lang_string('purgecachespage', 'admin'),
 116              "$CFG->wwwroot/$CFG->admin/purgecaches.php"));
 117  
 118      $ADMIN->add('development', new admin_externalpage('thirdpartylibs', new lang_string('thirdpartylibs','admin'), "$CFG->wwwroot/$CFG->admin/thirdpartylibs.php"));
 119  } // end of speedup