示例#1
0
 /**
  * Builds some complex regexps and calls the constructor
  * of the parent class.
  *
  * Make sure that you call this constructor if you derive your own
  * template class from this one.
  *
  * @see    HTML_Template_IT()
  */
 function __construct($root = '')
 {
     $this->checkblocknameRegExp = '@' . $this->blocknameRegExp . '@';
     $this->functionRegExp = '@' . $this->functionPrefix . '(' . $this->functionnameRegExp . ')\\s*\\(@sm';
     parent::__construct($root);
 }