Esempio n. 1
0
 /**
  * @param Ezer_PropelStepContainer $container
  * @param int $order
  */
 public function setContainer(Ezer_PropelStepContainer $container, $order = null)
 {
     $this->setContainerId($container->getId());
     $this->setContainerType($container->getType());
     if ($order) {
         $this->setOrder($order);
     }
 }
 public function __construct()
 {
     parent::__construct();
     $this->dataObject = new Ezer_PropelSequenceData();
     $this->setType(Ezer_IntStep::STEP_TYPE_SEQUENCE);
 }
Esempio n. 3
0
 public function __construct()
 {
     parent::__construct();
     $this->dataObject = new Ezer_PropelIfData();
     $this->setType(Ezer_IntStep::STEP_TYPE_IF);
 }
 public function __construct()
 {
     parent::__construct();
     $this->dataObject = new Ezer_PropelForeachData();
     $this->setType(Ezer_IntStep::STEP_TYPE_FOREACH);
 }