diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:32:59 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:32:59 -0400 |
commit | 6dc1997577fab2c366781fd7048144935afa0012 (patch) | |
tree | 8918d28c7ab4342f0738985e37af1dfc42d0e93a /includes/tidy/TidyDriverBase.php | |
parent | 150f94f051128f367bc89f6b7e5f57eb2a69fc62 (diff) | |
parent | fa89acd685cb09cdbe1c64cbb721ec64975bbbc1 (diff) |
Merge commit 'fa89acd'
# Conflicts:
# .gitignore
# extensions/ArchInterWiki.sql
Diffstat (limited to 'includes/tidy/TidyDriverBase.php')
-rw-r--r-- | includes/tidy/TidyDriverBase.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/includes/tidy/TidyDriverBase.php b/includes/tidy/TidyDriverBase.php new file mode 100644 index 00000000..1d994aa1 --- /dev/null +++ b/includes/tidy/TidyDriverBase.php @@ -0,0 +1,40 @@ +<?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 + * @return bool Whether the HTML is valid + */ + public function validate( $text, &$errorStr ) { + throw new MWException( get_class( $this ) . " does not support validate()" ); + } + + /** + * Clean up HTML + * + * @param string HTML document fragment to clean up + * @param string The corrected HTML output + */ + public abstract function tidy( $text ); +} |