Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 3.9.x will end* 10 May 2021 (12 months).
  • Bug fixes for security issues in 3.9.x will end* 8 May 2023 (36 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.
   1  <?php
   2  // This file is part of Moodle - http://moodle.org/
   3  //
   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.
   8  //
   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.
  13  //
  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/>.
  16  
  17  /**
  18   * Test enrol plugin settings.
  19   *
  20   * @package    core_enrol
  21   * @copyright  2013 Petr Skoda {@link http://skodak.org}
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  require(__DIR__.'/../config.php');
  26  require_once("$CFG->libdir/adminlib.php");
  27  
  28  $enrol = optional_param('enrol', '', PARAM_RAW);
  29  if (!core_component::is_valid_plugin_name('enrol', $enrol)) {
  30      $enrol = '';
  31  } else if (!file_exists("$CFG->dirroot/enrol/$enrol/lib.php")) {
  32      $enrol = '';
  33  }
  34  
  35  navigation_node::override_active_url(new moodle_url('/admin/settings.php', array('section'=>'manageenrols')));
  36  admin_externalpage_setup('enroltestsettings');
  37  
  38  $returnurl = new moodle_url('/admin/settings.php', array('section'=>'manageenrols'));
  39  
  40  echo $OUTPUT->header();
  41  
  42  if (!$enrol) {
  43      $options = array();
  44      $plugins = core_component::get_plugin_list('enrol');
  45      foreach ($plugins as $name => $fulldir) {
  46          $plugin = enrol_get_plugin($name);
  47          if (!$plugin or !method_exists($plugin, 'test_settings')) {
  48              continue;
  49          }
  50          $options[$name] = get_string('pluginname', 'enrol_'.$name);
  51      }
  52  
  53      if (!$options) {
  54          redirect($returnurl);
  55      }
  56  
  57      echo $OUTPUT->heading(get_string('testsettings', 'core_enrol'));
  58  
  59      $url = new moodle_url('/enrol/test_settings.php', array('sesskey'=>sesskey()));
  60      echo $OUTPUT->single_select($url, 'enrol', $options);
  61  
  62      echo $OUTPUT->footer();
  63  }
  64  
  65  $plugin = enrol_get_plugin($enrol);
  66  if (!$plugin or !method_exists($plugin, 'test_settings')) {
  67      redirect($returnurl);
  68  }
  69  
  70  echo $OUTPUT->heading(get_string('testsettingsheading', 'core_enrol', get_string('pluginname', 'enrol_'.$enrol)));
  71  
  72  $plugin->test_settings();
  73  
  74  echo $OUTPUT->continue_button($returnurl);
  75  echo $OUTPUT->footer();