Ejemplo n.º 1
0
 public function getFields()
 {
     $this->required();
     $this->readonly();
     $this->help();
     return parent::getFields();
 }
Ejemplo n.º 2
0
 public function getFields()
 {
     $this->readonly();
     $this->help();
     $this->defaultValue();
     return parent::getFields();
 }
Ejemplo n.º 3
0
Archivo: Form.php Proyecto: nabble/ajde
 public function getFields()
 {
     $this->required();
     $this->readonly();
     $this->help();
     $this->link();
     $this->defaultValue();
     $this->usePopup();
     return parent::getFields();
 }
Ejemplo n.º 4
0
 public function getFields()
 {
     $this->help();
     $this->stream();
     $this->defaultToggle();
     $this->twitter();
     $this->facebook();
     $this->mail();
     return parent::getFields();
 }
Ejemplo n.º 5
0
 public function getFields()
 {
     $this->required();
     $this->readonly();
     $this->help();
     $this->defaultValue();
     $this->useImage();
     $this->media();
     return parent::getFields();
 }
Ejemplo n.º 6
0
Archivo: Text.php Proyecto: nabble/ajde
 public function getFields()
 {
     $this->required();
     $this->readonly();
     $this->length();
     $this->height();
     $this->help();
     $this->defaultValue();
     $this->useWysiwyg();
     return parent::getFields();
 }