Ejemplo n.º 1
0
 function __construct($rules = array(), $options = array())
 {
     $this->blocks["loop"] = new PhemeLoopParser();
     parent::__construct($rules, $options);
 }
Ejemplo n.º 2
0
 /**
  * Class constructor.
  * Takes any number of parameters, then assigs them to the $_params property
  */
 function __construct()
 {
     $this->params = func_get_args();
     parent::__construct();
 }
Ejemplo n.º 3
0
 function __construct($rules = array(), $options = array())
 {
     $this->blocks['NodeChildren'] = new NodeChildrenParser();
     $this->blocks['Html'] = new NodeUnescapeParser();
     parent::__construct($rules, $options);
 }
Ejemplo n.º 4
0
 function __construct($rules = array(), $options = array())
 {
     $this->blocks["loop"] = new ImageGalleryLoopParser();
     $this->blocks["loop"]->blocks['GalleryImage'] = new ImageGalleryItemParser();
     parent::__construct($rules, $options);
 }