예제 #1
0
파일: Products.php 프로젝트: nabble/ajde
 public function getFields()
 {
     $this->required();
     $this->readonly();
     $this->help();
     return parent::getFields();
 }
예제 #2
0
파일: Toggle.php 프로젝트: nabble/ajde
 public function getFields()
 {
     $this->readonly();
     $this->help();
     $this->defaultValue();
     return parent::getFields();
 }
예제 #3
0
파일: Form.php 프로젝트: nabble/ajde
 public function getFields()
 {
     $this->required();
     $this->readonly();
     $this->help();
     $this->link();
     $this->defaultValue();
     $this->usePopup();
     return parent::getFields();
 }
예제 #4
0
파일: Publish.php 프로젝트: nabble/ajde
 public function getFields()
 {
     $this->help();
     $this->stream();
     $this->defaultToggle();
     $this->twitter();
     $this->facebook();
     $this->mail();
     return parent::getFields();
 }
예제 #5
0
파일: Spatial.php 프로젝트: nabble/ajde
 public function getFields()
 {
     $this->required();
     $this->readonly();
     $this->help();
     $this->defaultValue();
     $this->useImage();
     $this->media();
     return parent::getFields();
 }
예제 #6
0
파일: Text.php 프로젝트: nabble/ajde
 public function getFields()
 {
     $this->required();
     $this->readonly();
     $this->length();
     $this->height();
     $this->help();
     $this->defaultValue();
     $this->useWysiwyg();
     return parent::getFields();
 }