2 // This file is part of Moodle - http://moodle.org/
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.
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.
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/>.
18 * Adds moodle fields to solr schema.
20 * Schema REST API write actions are only available from Solr 4.4 onwards.
22 * The schema should be managed and mutable to allow this script
23 * to add new fields to the schema.
25 * @link https://cwiki.apache.org/confluence/display/solr/Managed+Schema+Definition+in+SolrConfig
26 * @package search_solr
27 * @copyright 2015 David Monllao {@link http://www.davidmonllao.com}
28 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
31 require_once(__DIR__ . '/../../../config.php');
32 require_once($CFG->libdir.'/adminlib.php');
34 require_login(null, false);
35 require_capability('moodle/site:config', context_system::instance());
37 $schema = new \search_solr\schema();
40 $url = new moodle_url('/admin/settings.php', array('section' => 'manageglobalsearch'));
41 redirect($url, get_string('setupok', 'search_solr'), 4);