Automatic installer.php lang files by installer_builder (20070726)
[moodle-linuxchix.git] / search / documents / physical_html.php
blob8455e709b40f33b7eb895529628414dbcb35e3d8
1 <?php
2 /**
3 * Global Search Engine for Moodle
4 * add-on 1.8+ : Valery Fremaux [valery.fremaux@club-internet.fr]
5 * 2007/08/02
7 * this is a format handler for getting text out of a proprietary binary format
8 * so it can be indexed by Lucene search engine
9 */
11 function get_text_for_indexing_html(&$resource){
13 // wraps to htm handler
14 include_once 'physical_htm.php';
15 return get_text_for_indexing_htm($resource);