silverstripe-cms/code/HTMLCleaner.php

15 lines
260 B
PHP
Raw Normal View History

<?php
/**
* Base class for HTML cleaning classes.
*/
abstract class HTMLCleaner extends Object {
/**
* Passed $content, return HTML that has been tidied.
* @return string $content HTML, tidied
*/
public abstract function cleanHTML($content);
}
?>