PHP 8.2.31
Preview: CSSTidy.php Size: 1.33 KB
/home/nshryvcy/blissfulnepal.com/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;
    }
}

Directory Contents

Dirs: 7 × Files: 18

Name Size Perms Modified Actions
Cache DIR
- drwxr-xr-x 2026-04-03 01:36:05
Edit Download
- drwxr-xr-x 2026-04-03 01:36:05
Edit Download
CSS DIR
- drwxr-xr-x 2026-04-03 01:36:05
Edit Download
HTML DIR
- drwxr-xr-x 2026-04-03 01:36:05
Edit Download
Inline DIR
- drwxr-xr-x 2026-04-03 01:36:05
Edit Download
JS DIR
- drwxr-xr-x 2026-04-03 01:36:05
Edit Download
YUI DIR
- drwxr-xr-x 2026-04-03 01:36:05
Edit Download
2.58 KB lrw-r--r-- 2026-04-03 01:36:05
Edit Download
3.63 KB lrw-r--r-- 2026-04-03 01:36:05
Edit Download
347 B lrw-r--r-- 2026-04-03 01:36:05
Edit Download
2.60 KB lrw-r--r-- 2026-04-03 01:36:05
Edit Download
2.92 KB lrw-r--r-- 2026-04-03 01:36:05
Edit Download
1.33 KB lrw-r--r-- 2026-04-03 01:36:05
Edit Download
777 B lrw-r--r-- 2026-04-03 01:36:05
Edit Download
10.95 KB lrw-r--r-- 2026-04-03 01:36:05
Edit Download
1.23 KB lrw-r--r-- 2026-04-03 01:36:05
Edit Download
1.63 KB lrw-r--r-- 2026-04-03 01:36:05
Edit Download
7.57 KB lrw-r--r-- 2026-04-03 01:36:05
Edit Download
0 B lrw-r--r-- 2026-04-03 01:36:05
Edit Download
2.79 KB lrw-r--r-- 2026-04-03 01:36:05
Edit Download
5.21 KB lrw-r--r-- 2026-04-03 01:36:05
Edit Download
1.03 KB lrw-r--r-- 2026-04-03 01:36:05
Edit Download
1.07 KB lrw-r--r-- 2026-04-03 01:36:05
Edit Download
5.69 KB lrw-r--r-- 2026-04-03 01:36:05
Edit Download
4.91 KB lrw-r--r-- 2026-04-03 01:36:05
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).