You are here

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

Registers a candidate comment token

Parameters

$comment:

Return value

string The comment token ID string

1 call to CSSmin::registerComment()
CSSmin::processComments in advagg_css_compress/yui/CSSMin.inc

File

advagg_css_compress/yui/CSSMin.inc, line 270

Class

CSSmin

Code

private function registerComment($comment) {
  $this->comments[] = $comment;
  return '/*' . self::COMMENT . (count($this->comments) - 1) . '___*/';
}