Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 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.

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

   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   * Logging store management.
  19   *
  20   * @package    tool_log
  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_once('../../../config.php');
  26  require_once($CFG->libdir . '/adminlib.php');
  27  
  28  $action = required_param('action', PARAM_ALPHANUMEXT);
  29  $enrol = required_param('store', PARAM_PLUGIN);
  30  
  31  $PAGE->set_url('/admin/tool/log/stores.php');
  32  $PAGE->set_context(context_system::instance());
  33  
  34  require_admin();
  35  require_sesskey();
  36  
  37  $all = \tool_log\log\manager::get_store_plugins();
  38  $enabled = get_config('tool_log', 'enabled_stores');
  39  if (!$enabled) {
  40      $enabled = array();
  41  } else {
  42      $enabled = array_flip(explode(',', $enabled));
  43  }
  44  
  45  $return = new moodle_url('/admin/settings.php', array('section' => 'managelogging'));
  46  
  47  $syscontext = context_system::instance();
  48  
  49  switch ($action) {
  50      case 'disable':
  51          unset($enabled[$enrol]);
  52          set_config('enabled_stores', implode(',', array_keys($enabled)), 'tool_log');
  53          add_to_config_log('tool_logstore_visibility', '1', '0', $enrol);
  54          break;
  55  
  56      case 'enable':
  57          if (!isset($all[$enrol])) {
  58              break;
  59          }
  60          $enabled = array_keys($enabled);
  61          $enabled[] = $enrol;
  62          set_config('enabled_stores', implode(',', $enabled), 'tool_log');
  63          add_to_config_log('tool_logstore_visibility', '0', '1', $enrol);
  64          break;
  65  
  66      case 'up':
  67          if (!isset($enabled[$enrol])) {
  68              break;
  69          }
  70          $enabled = array_keys($enabled);
  71          $enabled = array_flip($enabled);
  72          $current = $enabled[$enrol];
  73          if ($current == 0) {
  74              break; // Already at the top.
  75          }
  76          $enabled = array_flip($enabled);
  77          $enabled[$current] = $enabled[$current - 1];
  78          $enabled[$current - 1] = $enrol;
  79          set_config('enabled_stores', implode(',', $enabled), 'tool_log');
  80          break;
  81  
  82      case 'down':
  83          if (!isset($enabled[$enrol])) {
  84              break;
  85          }
  86          $enabled = array_keys($enabled);
  87          $enabled = array_flip($enabled);
  88          $current = $enabled[$enrol];
  89          if ($current == count($enabled) - 1) {
  90              break; // Already at the end.
  91          }
  92          $enabled = array_flip($enabled);
  93          $enabled[$current] = $enabled[$current + 1];
  94          $enabled[$current + 1] = $enrol;
  95          set_config('enabled_stores', implode(',', $enabled), 'tool_log');
  96          break;
  97  }
  98  
  99  redirect($return);