Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/hessa.corals.io/wp-content/plugins/w3-total-cache/lib/Minify/Minify/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/corals/hessa.corals.io/wp-content/plugins/w3-total-cache/lib/Minify/Minify/CSSTidy.php
<?php
namespace W3TCL\Minify;

class Minify_CSSTidy {
    public static function minify($css, $options = array()) {
        $options = array_merge(array(
            'remove_bslash' => true,
            'compress_colors' => false,
            'compress_font-weight' => false,
            'lowercase_s' => false,
            'optimise_shorthands' => 0,
            'remove_last_;' => false,
            'space_before_important' => false,
            'case_properties' => 1,
            'sort_properties' => false,
            'sort_selectors' => false,
            'merge_selectors' => 0,
            'discard_invalid_selectors' => false,
            'discard_invalid_properties' => false,
            'css_level' => 'CSS3.0',
            'preserve_css' => false,
            'timestamp' => false,
            'template' => 'default'
        ), $options);

        set_include_path(get_include_path() . PATH_SEPARATOR . W3TC_LIB_DIR . '/CSSTidy');

        require_once 'class.csstidy.php';

        $csstidy = new \csstidy();

        foreach ($options as $option => $value) {
            $csstidy->set_cfg($option, $value);
        }

        $csstidy->load_template($options['template']);
        $csstidy->parse($css);

        $css = $csstidy->print->plain();

        $css = Minify_CSS_UriRewriter::rewrite($css, $options);

        return $css;
    }
}

Spamworldpro Mini