Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 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
 * Adds moodle fields to solr schema.
19
 *
20
 * Schema REST API write actions are only available from Solr 4.4 onwards.
21
 *
22
 * The schema should be managed and mutable to allow this script
23
 * to add new fields to the schema.
24
 *
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
29
 */
30
 
31
require_once(__DIR__ . '/../../../config.php');
32
require_once($CFG->libdir.'/adminlib.php');
33
 
34
require_login(null, false);
35
require_capability('moodle/site:config', context_system::instance());
36
 
37
$returnurl = new moodle_url('/admin/settings.php', array('section' => 'manageglobalsearch'));
38
 
39
$schema = new \search_solr\schema();
40
 
41
$status = $schema->can_setup_server();
42
if ($status !== true) {
43
 
44
    $PAGE->set_context(context_system::instance());
45
    $PAGE->set_url(new moodle_url('/search/engine/solr/setup_schema.php'));
46
 
47
    echo $OUTPUT->header();
48
    echo $OUTPUT->notification($status, \core\output\notification::NOTIFY_ERROR);
49
    echo $OUTPUT->box($OUTPUT->action_link($returnurl, get_string('continue')), 'generalbox centerpara');
50
    echo $OUTPUT->footer();
51
 
52
    exit(1);
53
}
54
 
55
$schema->setup();
56
 
57
redirect($returnurl, get_string('setupok', 'search_solr'), 4);