PHP 8.2.31
Preview: IgnoredCommentPreserver.php Size: 1.63 KB
/home/nshryvcy/blissfulnepal.com/wp-content/plugins/w3-total-cache/lib/Minify/Minify/IgnoredCommentPreserver.php

<?php
namespace W3TCL\Minify;

class Minify_IgnoredCommentPreserver {
    protected $_replacementHash = '';
    protected $_ignoredComments = array();
    protected $_placeholders = array();

    public function __construct() {
        $this->_replacementHash = 'IgnoredCommentPreserver_' . md5(time());
    }

    public function setIgnoredComments($ignoredComments = array()) {
        $this->_ignoredComments = $ignoredComments;
    }

    public function search($html) {
        $html = preg_replace_callback('/<!--[\\s\\S]*?-->/',
            array($this, '_callback'),
            $html);
        return $html;
    }

    public function replace($html) {
        $html = str_replace(array_keys($this->_placeholders),
            array_values($this->_placeholders),
            $html);
        return $html;
    }

    protected function _callback($match) {
        list($comment) = $match;

        if ($this->_isIgnoredComment($comment)) {
            return $this->_reservePlace($comment);
        }

        return $comment;
    }

    protected function _isIgnoredComment(&$comment) {
        foreach ($this->_ignoredComments as $ignoredComment) {
            if ( ! empty( $ignoredComment ) && stristr($comment, $ignoredComment ) !== false) {
                return true;
            }
        }

        return false;
    }

    protected function _getPlaceholder() {
        return '%%' . $this->_replacementHash . '_' . count($this->_placeholders) . '%%';
    }

    protected function _reservePlace(&$content) {
        $placeholder = $this->_getPlaceholder();

        $this->_placeholders[$placeholder] = &$content;

        return $placeholder;
    }
}

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).