3 /* cron script to perform all the periodic search tasks
6 * updates the index by pruning deleted documents
9 * updates document info in the index if the document has been modified since indexing
12 * adds documents created since the last index run
15 if (!defined('MOODLE_INTERNAL')) {
16 die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
19 require_once("$CFG->dirroot/search/lib.php");
21 if (empty($CFG->enableglobalsearch
)) {
22 mtrace('Global searching is not enabled. Nothing performed by search.');
25 include("{$CFG->dirroot}/search/cron_php5.php");