Merge commit 'catalyst/MOODLE_19_STABLE' into mdl19-linuxchix
[moodle-linuxchix.git] / search / documents / physical_html.php
blobe03d44566f22c6b61a014b34247a770e288963b5
1 <?php
2 /**
3 * Global Search Engine for Moodle
5 * @package search
6 * @category core
7 * @subpackage document_wrappers
8 * @author Valery Fremaux [valery.fremaux@club-internet.fr] > 1.8
9 * @date 2008/03/31
10 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
12 * this is a format handler for getting text out of a standard html format
13 * so it can be indexed by Lucene search engine
16 /**
17 * @param object $resource
19 function get_text_for_indexing_html(&$resource){
21 // wraps to htm handler
22 include_once 'physical_htm.php';
23 return get_text_for_indexing_htm($resource);