You are here

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

Gets the candidate comment token ID string for the specified comment token ID

Parameters

$id:

Return value

string

2 calls to CSSmin::getCommentPlaceholderById()
CSSmin::getCommentPlaceholderRegexById in advagg_css_compress/yui/CSSMin.inc
Gets the regular expression to match the specified comment token ID string
CSSmin::minify in advagg_css_compress/yui/CSSMin.inc
Minifies the given input CSS string

File

advagg_css_compress/yui/CSSMin.inc, line 281

Class

CSSmin

Code

private function getCommentPlaceholderById($id) {
  return self::COMMENT . $id . '___';
}