Exemplo n.º 1
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->startBracket = '{';
     $this->endBracket = '}';
     $this->block = null;
 }
Exemplo n.º 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;
 }
Exemplo n.º 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;
 }
Exemplo n.º 5
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);
 }
Exemplo n.º 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;
 }
Exemplo n.º 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;
 }
Exemplo n.º 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;
 }