Exemple #1
0
 public function compile(JsUtils $js = NULL, &$view = NULL)
 {
     if (isset($this->_activeStep) === true && \is_numeric($this->_activeStep)) {
         $this->defineActiveStep();
     }
     return parent::compile($js, $view);
 }
 public function compile(JsUtils $js = NULL, $view = NULL)
 {
     if ($this->_equalWidth) {
         $count = $this->count();
         $this->addToProperty("class", Wide::getConstants()["W" . $count] . " fields");
     } else {
         $this->addToProperty("class", "fields");
     }
     return parent::compile($js, $view);
 }
 public function compile(JsUtils $js = NULL, &$view = NULL)
 {
     if ($this->_implicite === true) {
         $this->_template = "%wrapContentBefore%%content%%wrapContentAfter%";
     }
     return parent::compile($js, $view);
 }