You are here

private function CSSmin::getCommentPlaceholderRegexById in Advanced CSS/JS Aggregation 7.2

Gets the regular expression to match the specified comment token ID string

Parameters

$id:

Return value

string

2 calls to CSSmin::getCommentPlaceholderRegexById()
CSSmin::minify in advagg_css_compress/yui/CSSMin.inc
Minifies the given input CSS string
CSSmin::processStrings in advagg_css_compress/yui/CSSMin.inc

File

advagg_css_compress/yui/CSSMin.inc, line 291

Class

CSSmin

Code

private function getCommentPlaceholderRegexById($id) {
  return '/' . $this
    ->getCommentPlaceholderById($id) . '/';
}