Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 4.1.x will end 13 November 2023 (12 months).
  • Bug fixes for security issues in 4.1.x will end 10 November 2025 (36 months).
  • PHP version: minimum PHP 7.4.0 Note: minimum PHP version has increased since Moodle 4.0. PHP 8.0.x is supported too.

Differences Between: [Versions 401 and 402] [Versions 401 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   * Calculated question type upgrade code.
  19   *
  20   * @package    search_simpledb
  21   * @copyright  2022 Renaud Lemaire {@link http://www.cblue.be}
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  /**
  26   * Upgrade code for the simpledb search engine.
  27   * @param int $oldversion the version we are upgrading from.
  28   */
  29  function xmldb_search_simpledb_upgrade($oldversion = 0) {
  30      global $DB;
  31  
  32      $dbman = $DB->get_manager();
  33  
  34      if ($oldversion < 2022050400) {
  35  
  36          $table = new xmldb_table('search_simpledb_index');
  37  
  38          // Define index areaid (not unique) to be added to search_simpledb_index.
  39          $index = new xmldb_index('contextid', XMLDB_INDEX_NOTUNIQUE, ['contextid']);
  40  
  41          // Conditionally launch add index contextid.
  42          if (!$dbman->index_exists($table, $index)) {
  43              $dbman->add_index($table, $index);
  44          }
  45  
  46          // Define index courseid (not unique) to be added to search_simpledb_index.
  47          $index = new xmldb_index('courseid', XMLDB_INDEX_NOTUNIQUE, ['courseid']);
  48  
  49          // Conditionally launch add index courseid.
  50          if (!$dbman->index_exists($table, $index)) {
  51              $dbman->add_index($table, $index);
  52          }
  53  
  54          // Define index areaid (not unique) to be added to search_simpledb_index.
  55          $index = new xmldb_index('areaid', XMLDB_INDEX_NOTUNIQUE, ['areaid']);
  56  
  57          // Conditionally launch add index areaid.
  58          if (!$dbman->index_exists($table, $index)) {
  59              $dbman->add_index($table, $index);
  60          }
  61  
  62          // Simpledb savepoint reached.
  63          upgrade_plugin_savepoint(true, 2022050400, 'search', 'simpledb');
  64      }
  65  
  66      // Automatically generated Moodle v4.1.0 release upgrade line.
  67      // Put any upgrade step following this.
  68  
  69      return true;
  70  }