Craft\MinifyService::minify PHP 메소드

minify() 공개 메소드

* -------------------------------------------------------------------------------- Minify all the things --------------------------------------------------------------------------------
public minify ( $htmlText = "" )
    public function minify($htmlText = "")
    {
        if ($this->shouldMinify) {
            $options = array('cssMinifier' => '\\Minify_CSSmin::minify', 'jsMinifier' => '\\JSMin\\JSMin::minify');
            $htmlText = \Minify_HTML::minify($htmlText, $options);
        }
        return $htmlText;
    }