You are here

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

Gets the regular expression to match the specified at rule block token ID string

Parameters

$id:

Return value

string

1 call to CSSmin::getAtRuleBlockPlaceholderRegexById()
CSSmin::minify in advagg_css_compress/yui/CSSMin.inc
Minifies the given input CSS string

File

advagg_css_compress/yui/CSSMin.inc, line 312

Class

CSSmin

Code

private function getAtRuleBlockPlaceholderRegexById($id) {
  return '/' . self::AT_RULE_BLOCK . $id . '___/';
}