1: | <?php |
2: | require_once ( dirname ( __FILE__ ) . "/Minifier.php" ) ; |
3: | require_once ( dirname ( __FILE__ ) . "/CssMinifier.php" ) ; |
4: | require_once ( dirname ( __FILE__ ) . "/JavascriptMinifier.php" ) ; |
5: | class HtmlMinifier extends Minifier |
6: | { |
7: | public $StyleTable = [] ; |
8: | const TAG_CLASS = '__CLASS__' ; |
9: | const TAG_STYLE = '__STYLE__' ; |
10: | const TAG_LOCAL_STYLE = '__LOCAL_STYLE__' ; |
11: | const TAG_START = "\x00" ; |
12: | const TAG_END = "\x01" ; |
13: | protected function MinifyData ( ) |
14: | {} |
15: | protected function __get_text_data ( $node ) |
16: | {} |
17: | } |