コード例 #1
0
ファイル: indexer.php プロジェクト: gabrielrosset/moodle
require_once $CFG->libdir . '/clilib.php';
// cli only functions
list($options, $unrecognized) = cli_get_params(array('help' => false, 'force' => false, 'reindex' => false), array('h' => 'help', 'f' => 'force', 'r' => 'reindex'));
if ($unrecognized) {
    $unrecognized = implode("\n  ", $unrecognized);
    cli_error(get_string('cliunknowoption', 'admin', $unrecognized));
}
if ($options['help']) {
    $help = "Index search data\n\nOptions:\n-h, --help            Print out this help\n-r, --reindex         Reindex data\n-f, --force           Allow indexer to run, even if global search is disabled.\n\nExample:\n\$ sudo -u www-data /usr/bin/php search/cli/indexer.php --reindex\n";
    echo $help;
    die;
}
if (!\core_search\manager::is_global_search_enabled() && empty($options['force'])) {
    cli_error('Global search is disabled. Use --force if you want to force an index while disabled');
}
if (!($searchengine = \core_search\manager::search_engine_instance())) {
    cli_error(get_string('engineserverstatus', 'search'));
}
if (!$searchengine->is_installed()) {
    cli_error('enginenotinstalled', 'search', $CFG->searchengine);
}
$serverstatus = $searchengine->is_server_ready();
if ($serverstatus !== true) {
    cli_error($serverstatus);
}
$globalsearch = \core_search\manager::instance();
if (empty($options['reindex'])) {
    echo "Running full index of site\n";
    echo "==========================\n";
    $globalsearch->index();
} else {
コード例 #2
0
ファイル: adminlib.php プロジェクト: IFPBMoodle/moodle
 /**
  * Builds the HTML to display the control
  *
  * @param string $data Unused
  * @param string $query
  * @return string
  */
 public function output_html($data, $query = '')
 {
     global $CFG, $OUTPUT;
     $return = '';
     $brtag = html_writer::empty_tag('br');
     // Available search areas.
     $searchareas = \core_search\manager::get_search_areas_list();
     $anyenabled = false;
     $anyindexed = false;
     foreach ($searchareas as $areaid => $searcharea) {
         list($componentname, $varname) = $searcharea->get_config_var_name();
         if (!$anyenabled) {
             $anyenabled = get_config($componentname, $varname . '_enabled');
         }
         if (!$anyindexed) {
             $anyindexed = get_config($componentname, $varname . '_indexingstart');
         }
         if ($anyenabled && $anyindexed) {
             break;
         }
     }
     $return .= $OUTPUT->heading(get_string('searchsetupinfo', 'admin'), 3, 'main');
     $table = new html_table();
     $table->head = array(get_string('step', 'search'), get_string('status'));
     $table->colclasses = array('leftalign step', 'leftalign status');
     $table->id = 'searchsetup';
     $table->attributes['class'] = 'admintable generaltable';
     $table->data = array();
     $return .= $brtag . get_string('searchsetupdescription', 'search') . $brtag . $brtag;
     // Select a search engine.
     $row = array();
     $url = new moodle_url('/admin/settings.php?section=manageglobalsearch#admin-searchengine');
     $row[0] = '1. ' . html_writer::tag('a', get_string('selectsearchengine', 'admin'), array('href' => $url));
     $status = html_writer::tag('span', get_string('no'), array('class' => 'statuscritical'));
     if (!empty($CFG->searchengine)) {
         $status = html_writer::tag('span', get_string('pluginname', 'search_' . $CFG->searchengine), array('class' => 'statusok'));
     }
     $row[1] = $status;
     $table->data[] = $row;
     // Available areas.
     $row = array();
     $url = new moodle_url('/admin/settings.php?section=manageglobalsearch#admin-searchengine');
     $row[0] = '2. ' . html_writer::tag('a', get_string('enablesearchareas', 'admin'), array('href' => $url));
     $status = html_writer::tag('span', get_string('no'), array('class' => 'statuscritical'));
     if ($anyenabled) {
         $status = html_writer::tag('span', get_string('yes'), array('class' => 'statusok'));
     }
     $row[1] = $status;
     $table->data[] = $row;
     // Setup search engine.
     $row = array();
     if (empty($CFG->searchengine)) {
         $row[0] = '3. ' . get_string('setupsearchengine', 'admin');
         $row[1] = html_writer::tag('span', get_string('no'), array('class' => 'statuscritical'));
     } else {
         $url = new moodle_url('/admin/settings.php?section=search' . $CFG->searchengine);
         $row[0] = '3. ' . html_writer::tag('a', get_string('setupsearchengine', 'admin'), array('href' => $url));
         // Check the engine status.
         $searchengine = \core_search\manager::search_engine_instance();
         $serverstatus = $searchengine->is_server_ready();
         if ($serverstatus === true) {
             $status = html_writer::tag('span', get_string('yes'), array('class' => 'statusok'));
         } else {
             $status = html_writer::tag('span', $serverstatus, array('class' => 'statuscritical'));
         }
         $row[1] = $status;
     }
     $table->data[] = $row;
     // Indexed data.
     $row = array();
     $url = new moodle_url('/report/search/index.php#searchindexform');
     $row[0] = '4. ' . html_writer::tag('a', get_string('indexdata', 'admin'), array('href' => $url));
     if ($anyindexed) {
         $status = html_writer::tag('span', get_string('yes'), array('class' => 'statusok'));
     } else {
         $status = html_writer::tag('span', get_string('no'), array('class' => 'statuscritical'));
     }
     $row[1] = $status;
     $table->data[] = $row;
     // Enable global search.
     $row = array();
     $url = new moodle_url("/admin/search.php?query=enableglobalsearch");
     $row[0] = '5. ' . html_writer::tag('a', get_string('enableglobalsearch', 'admin'), array('href' => $url));
     $status = html_writer::tag('span', get_string('no'), array('class' => 'statuscritical'));
     if (\core_search\manager::is_global_search_enabled()) {
         $status = html_writer::tag('span', get_string('yes'), array('class' => 'statusok'));
     }
     $row[1] = $status;
     $table->data[] = $row;
     $return .= html_writer::table($table);
     return highlight($query, $return);
 }