wiki.techinc.nl/includes/tidy/TidyDriverBase.php
addshore fdb2279e54 TidyDriverBase::validate throws an exception
Change-Id: I05e31c757ed92323ff905d993ac4d030b8aba1da
2017-06-30 14:10:54 +01:00

41 lines
841 B
PHP

<?php
namespace MediaWiki\Tidy;
/**
* Base class for HTML cleanup utilities
*/
abstract class TidyDriverBase {
protected $config;
function __construct( $config ) {
$this->config = $config;
}
/**
* Return true if validate() can be used
*/
public function supportsValidate() {
return false;
}
/**
* Check HTML for errors, used if $wgValidateAllHtml = true.
*
* @param string $text
* @param string &$errorStr Return the error string
* @throws \MWException
* @return bool Whether the HTML is valid
*/
public function validate( $text, &$errorStr ) {
throw new \MWException( static::class . ' does not support validate()' );
}
/**
* Clean up HTML
*
* @param string $text HTML document fragment to clean up
* @return string The corrected HTML output
*/
abstract public function tidy( $text );
}