PATH:
home
/
lab2454c
/
credityork.com
/
wp-content
/
plugins
/
w3-total-cache
/
lib
/
Minify
/
Minify
<?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; } }
[+]
JS
[-] ImportProcessor.php
[edit]
[-] YUICompressor.php
[edit]
[+]
Cache
[-] CSS.php
[edit]
[-] HTMLTidy.php
[edit]
[-] HTML.php
[edit]
[+]
..
[+]
Controller
[-] IgnoredCommentPreserver.php
[edit]
[-] index.html
[edit]
[+]
YUI
[-] Build.php
[edit]
[+]
CSS
[-] Packer.php
[edit]
[-] DebugDetector.php
[edit]
[-] CSSTidy.php
[edit]
[-] Lines.php
[edit]
[-] Logger.php
[edit]
[+]
HTML
[-] CommentPreserver.php
[edit]
[-] ClosureCompiler.php
[edit]
[-] Inline.php
[edit]
[-] CombineOnly.php
[edit]
[-] Source.php
[edit]
[+]
Inline