mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
78 lines
3.0 KiB
PHP
78 lines
3.0 KiB
PHP
<?php
|
|
/**
|
|
* Global Search Engine for Moodle
|
|
*
|
|
* @package search
|
|
* @category core
|
|
* @subpackage search_engine
|
|
* @author Michael Champanis (mchampan) [cynnical@gmail.com], Valery Fremaux [valery.fremaux@club-internet.fr] > 1.8
|
|
* @date 2008/03/31
|
|
* @version prepared for 2.0
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
|
*
|
|
* This file serves as a splash-screen (entry page) to the indexer script -
|
|
* it is in place to prevent accidental reindexing which can lead to a loss
|
|
* of time, amongst other things.
|
|
*/
|
|
|
|
/**
|
|
* includes and requires
|
|
*/
|
|
require_once('../config.php');
|
|
|
|
/// makes inclusions of the Zend Engine more reliable
|
|
ini_set('include_path', $CFG->dirroot.DIRECTORY_SEPARATOR.'search'.PATH_SEPARATOR.ini_get('include_path'));
|
|
|
|
require_once($CFG->dirroot.'/search/lib.php');
|
|
|
|
/// check global search is enabled
|
|
|
|
require_login();
|
|
|
|
if (empty($CFG->enableglobalsearch)) {
|
|
print_error('globalsearchdisabled', 'search');
|
|
}
|
|
|
|
if (!has_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM))) {
|
|
print_error('beadmin', 'search', get_login_url());
|
|
}
|
|
|
|
require_once("$CFG->dirroot/search/indexlib.php");
|
|
$indexinfo = new IndexInfo();
|
|
|
|
if ($indexinfo->valid()) {
|
|
$strsearch = get_string('search', 'search');
|
|
$strquery = get_string('stats');
|
|
|
|
// print page header
|
|
$site = get_site();
|
|
|
|
$PAGE->set_url('/search/indexersplash.php');
|
|
$PAGE->set_context(get_context_instance(CONTEXT_SYSTEM));
|
|
$PAGE->navbar->add($strsearch, new moodle_url('/search/index.php'));
|
|
$PAGE->navbar->add($strquery, new moodle_url('/search/stats.php'));
|
|
$PAGE->navbar->add(get_string('runindexer','search'));
|
|
$PAGE->set_title($strsearch);
|
|
$PAGE->set_heading($site->fullname);
|
|
echo $OUTPUT->header();
|
|
|
|
mtrace("<pre>The data directory ($indexinfo->path) contains $indexinfo->filecount files, and\n"
|
|
."there are ".$indexinfo->dbcount." records in the <em>block_search_documents</em> table.\n"
|
|
."\n"
|
|
."This indicates that you have already succesfully indexed this site. Follow the link\n"
|
|
."if you are sure that you want to continue indexing - this will replace any existing\n"
|
|
."index data (no Moodle data is affected).\n"
|
|
."\n"
|
|
."You are encouraged to use the 'Test indexing' script before continuing onto\n"
|
|
."indexing - this will check if the modules are set up correctly. Please correct\n"
|
|
."any errors before proceeding.\n"
|
|
."\n"
|
|
."<a href='tests/index.php'>Test indexing</a> or "
|
|
."<a href='indexer.php?areyousure=yes'>Continue indexing</a> or <a href='index.php'>Back to query page</a>."
|
|
."</pre>");
|
|
echo $OUTPUT->footer();
|
|
} else {
|
|
header('Location: indexer.php?areyousure=yes');
|
|
}
|
|
?>
|