1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?php /** * Thin wrapper around css minifiers to avoid rewriting a bunch of existing code. */
if ( ! defined( 'ABSPATH' ) ) { exit; }
class autoptimizeCSSmin { /** * Minifier instance. * * @var Autoptimize\tubalmartin\CssMin\Minifier|null */ protected $minifier = null;
/** * Construtor. * * @param bool $raise_limits Whether to raise memory limits or not. Default true. */ public function __construct( $raise_limits = true ) { $this->minifier = new Autoptimize\tubalmartin\CssMin\Minifier( $raise_limits ); }
/** * Runs the minifier on given string of $css. * Returns the minified css. * * @param string $css CSS to minify. * * @return string */ public function run( $css ) { $result = $this->minifier->run( $css );
return $result; }
/** * Static helper. * * @param string $css CSS to minify. * * @return string */ public static function minify( $css ) { $minifier = new self();
return $minifier->run( $css ); } }
|