silverstripe-textextraction/code/extractors/HTMLTextExtractor.php
2012-08-22 17:52:08 +02:00

26 lines
635 B
PHP

<?php
/**
* Text extractor that uses php function strip_tags to get just the text. OK for indexing, not the best for readable text.
* @author mstephens
*
*/
class HTMLTextExtractor extends FileTextExtractor {
function supportedExtensions() {
return array("html", "htm", "xhtml");
}
/**
* Lower priority because its not the most clever HTML extraction. If there is something better, use it
* @var unknown_type
*/
public static $priority = 10;
function getContent($file) {
$filename = Director::baseFolder() . "/" . $file->Filename;
$content = file_get_contents($filename);
return strip_tags($content);
}
}
?>