PluginProbe
Autoptimize / 0.8
Autoptimize v0.8
2.2.2 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.5.0 2.5.1 2.6.0 2.6.1 2.6.2 2.7.0 2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 All 107 releases
autoptimize / classes / autoptimizeHTML.php

autoptimizeHTML.php in Autoptimize 0.8, at classes/autoptimizeHTML.php

40 lines 569 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 class autoptimizeHTML extends autoptimizeBase
4 {
5
6 //Does nothing
7 public function read($justhead)
8 {
9 //Nothing to read for HTML
10 return true;
11 }
12
13 //Joins and optimizes CSS
14 public function minify()
15 {
16 if(class_exists('Minify_HTML'))
17 {
18 //Remove whitespace
19 $this->content = Minify_HTML::minify($this->content);
20 return true;
21 }
22
23 //Didn't minify :(
24 return false;
25 }
26
27 //Does nothing
28 public function cache()
29 {
30 //No cache for HTML
31 return true;
32 }
33
34 //Returns the content
35 public function getcontent()
36 {
37 return $this->content;
38 }
39 }
40