mirror of
https://github.com/moodle/moodle.git
synced 2025-08-08 10:26:40 +02:00
global search review and extension for physical files
This commit is contained in:
parent
cf0b12ac83
commit
2f338ab5b0
28 changed files with 3903 additions and 1485 deletions
28
search/documents/physical_xml.php
Normal file
28
search/documents/physical_xml.php
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
/**
|
||||
* Global Search Engine for Moodle
|
||||
* add-on 1.8+ : Valery Fremaux [valery.fremaux@club-internet.fr]
|
||||
* 2007/08/02
|
||||
*
|
||||
* this is a format handler for getting text out of a proprietary binary format
|
||||
* so it can be indexed by Lucene search engine
|
||||
*/
|
||||
|
||||
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;
|
||||
}
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue