Files
roi-theme/wp-content/plugins/w3-total-cache/lib/Minify/Minify/IgnoredCommentPreserver.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 21:04:30 -06:00

63 lines
1.6 KiB
PHP
Executable File

<?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;
}
}