示例#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();
 }