Gets the candidate comment token ID string for the specified comment token ID
Paramètres
$id:
Return value
string
2 calls to CSSmin::getCommentPlaceholderById()
- CSSmin::getCommentPlaceholderRegexById dans advagg_css_compress/
yui/ CSSMin.inc - Gets the regular expression to match the specified comment token ID string
- CSSmin::minify dans advagg_css_compress/
yui/ CSSMin.inc - Minifies the given input CSS string
Fichier
-
advagg_css_compress/
yui/ CSSMin.inc, line 281
Classe
Code
private function getCommentPlaceholderById($id) {
return self::COMMENT . $id . '___';
}