mirror of
https://github.com/moodle/moodle.git
synced 2025-02-23 19:44:19 +01:00
37 lines
988 B
PHP
37 lines
988 B
PHP
<?php
|
|
/**
|
|
* Global Search Engine for Moodle
|
|
*
|
|
* @package search
|
|
* @category core
|
|
* @subpackage document_wrappers
|
|
* @author Valery Fremaux [valery.fremaux@club-internet.fr] > 1.8
|
|
* @date 2008/03/31
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
|
*
|
|
* this is a format handler for getting text out of a proprietary binary format
|
|
* so it can be indexed by Lucene search engine
|
|
*/
|
|
|
|
/**
|
|
* @param object $resource
|
|
* @uses CFG, USER
|
|
*/
|
|
function get_text_for_indexing_xml(&$resource){
|
|
global $CFG, $USER;
|
|
|
|
// SECURITY : do not allow non admin execute anything on system !!
|
|
if (!isadmin($USER->id)) return;
|
|
|
|
// just get text
|
|
$text = implode('', file("{$CFG->dataroot}/{$resource->course}/($resource->reference)"));
|
|
|
|
// filter out all xml tags
|
|
$text = preg_replace("/<[^>]*>/", ' ', $text);
|
|
|
|
if (!empty($CFG->block_search_limit_index_body)){
|
|
$text = shorten($text, $CFG->block_search_limit_index_body);
|
|
}
|
|
return $text;
|
|
}
|
|
?>
|