PageRenderTime 52ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/auth/test_settings.php

https://bitbucket.org/moodle/moodle
PHP | 75 lines | 39 code | 15 blank | 21 comment | 7 complexity | 15ce1021e00500dbc3eab41ea3a8c349 MD5 | raw file
Possible License(s): Apache-2.0, LGPL-2.1, BSD-3-Clause, MIT, GPL-3.0
  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. * Test auth settings.
  18. *
  19. * @package core_auth
  20. * @copyright 2013 Petr Skoda {@link http://skodak.org}
  21. * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  22. */
  23. require(__DIR__.'/../config.php');
  24. require_once("$CFG->libdir/adminlib.php");
  25. $auth = optional_param('auth', '', PARAM_RAW);
  26. if (!core_component::is_valid_plugin_name('auth', $auth)) {
  27. $auth = '';
  28. } else if (!file_exists("$CFG->dirroot/auth/$auth/auth.php")) {
  29. $auth = '';
  30. }
  31. navigation_node::override_active_url(new moodle_url('/admin/settings.php', array('section'=>'manageauths')));
  32. admin_externalpage_setup('authtestsettings');
  33. $returnurl = new moodle_url('/admin/settings.php', array('section'=>'manageauths'));
  34. echo $OUTPUT->header();
  35. if (!$auth) {
  36. $options = array();
  37. $plugins = core_component::get_plugin_list('auth');
  38. foreach ($plugins as $name => $fulldir) {
  39. $plugin = get_auth_plugin($name);
  40. if (!$plugin or !method_exists($plugin, 'test_settings')) {
  41. continue;
  42. }
  43. $options[$name] = get_string('pluginname', 'auth_'.$name);
  44. }
  45. if (!$options) {
  46. redirect($returnurl);
  47. }
  48. echo $OUTPUT->heading(get_string('testsettings', 'core_auth'));
  49. $url = new moodle_url('/auth/test_settings.php', array('sesskey'=>sesskey()));
  50. echo $OUTPUT->single_select($url, 'auth', $options);
  51. echo $OUTPUT->footer();
  52. }
  53. $plugin = get_auth_plugin($auth);
  54. if (!$plugin or !method_exists($plugin, 'test_settings')) {
  55. redirect($returnurl);
  56. }
  57. echo $OUTPUT->heading(get_string('testsettingsheading', 'core_auth', get_string('pluginname', 'auth_'.$auth)));
  58. $plugin->test_settings();
  59. echo $OUTPUT->continue_button($returnurl);
  60. echo $OUTPUT->footer();