예제 #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;
 }
예제 #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;
 }
예제 #4
0
파일: variable.php 프로젝트: bmdevel/ezc
 /**
  * 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;
 }
예제 #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);
 }
예제 #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;
 }
예제 #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;
 }
예제 #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;
 }