/**
  * Passes control to parent.
  *
  * @param ezcTemplateParser $parser
  * @param ezcTemplateSourceToTstParser $parentParser
  * @param ezcTemplateCursor $startCursor
  */
 function __construct(ezcTemplateParser $parser, $parentParser, $startCursor)
 {
     parent::__construct($parser, $parentParser, $startCursor);
     $this->startBracket = '{';
     $this->endBracket = '}';
     $this->block = null;
 }
Exemple #2
0
 /**
  * Passes control to parent.
  *
  * @param ezcTemplateParser $parser
  * @param ezcTemplateSourceToTstParser $parentParser
  * @param ezcTemplateCursor $startCursor
  */
 function __construct(ezcTemplateParser $parser, $parentParser, $startCursor)
 {
     parent::__construct($parser, $parentParser, $startCursor);
     $this->currentOperator = null;
     $this->rootOperator = null;
     $this->minPrecedence = false;
 }
 /**
  * Passes control to parent.
  *
  * @param ezcTemplateParser $parser
  * @param ezcTemplateSourceToTstParser $parentParser
  * @param ezcTemplateCursor $startCursor
  */
 function __construct(ezcTemplateParser $parser, $parentParser, $startCursor)
 {
     parent::__construct($parser, $parentParser, $startCursor);
     $this->block = null;
 }
Exemple #4
0
 /**
  * Passes control to parent.
  *
  * @param ezcTemplateParser $parser
  * @param ezcTemplateSourceToTstParser $parentParser
  * @param ezcTemplateCursor $startCursor
  */
 function __construct(ezcTemplateParser $parser, $parentParser, $startCursor)
 {
     parent::__construct($parser, $parentParser, $startCursor);
     $this->variable = null;
     $this->variableName = null;
 }
 /**
  * Passes control to parent.
  *
  * @param ezcTemplateParser $parser
  * @param ezcTemplateSourceToTstParser $parentParser
  * @param ezcTemplateCursor $startCursor
  */
 function __construct(ezcTemplateParser $parser, $parentParser, $startCursor)
 {
     parent::__construct($parser, $parentParser, $startCursor);
 }
Exemple #6
0
 /**
  * Passes control to parent.
  *
  * @param ezcTemplateParser $parser
  * @param ezcTemplateSourceToTstParser $parentParser
  * @param ezcTemplateCursor $startCursor
  */
 function __construct(ezcTemplateParser $parser, $parentParser, $startCursor)
 {
     parent::__construct($parser, $parentParser, $startCursor);
     $this->value = null;
     $this->element = null;
 }
Exemple #7
0
 /**
  * Passes control to parent.
  *
  * @param ezcTemplateParser $parser
  * @param ezcTemplateSourceToTstParser $parentParser
  * @param ezcTemplateCursor $startCursor
  */
 function __construct(ezcTemplateParser $parser, $parentParser, $startCursor)
 {
     parent::__construct($parser, $parentParser, $startCursor);
     $this->readingParameter = false;
 }
Exemple #8
0
 /**
  * Passes control to parent.
  * 
  * @param ezcTemplateParser $parser
  * @param ezcTemplateSourceToTstParser $parentParser
  * @param ezcTemplateCursor $startCursor
  */
 function __construct(ezcTemplateParser $parser, ezcTemplateSourceToTstParser $parentParser, ezcTemplateCursor $startCursor = null)
 {
     parent::__construct($parser, $parentParser, $startCursor);
     $this->block = null;
 }