コード例 #1
0
ファイル: Toggle.php プロジェクト: nabble/ajde-core
 public function getFields()
 {
     $this->readonly();
     $this->help();
     $this->defaultValue();
     return parent::getFields();
 }
コード例 #2
0
ファイル: Products.php プロジェクト: nabble/ajde-core
 public function getFields()
 {
     $this->required();
     $this->readonly();
     $this->help();
     return parent::getFields();
 }
コード例 #3
0
ファイル: Form.php プロジェクト: nabble/ajde-core
 public function getFields()
 {
     $this->required();
     $this->readonly();
     $this->help();
     $this->link();
     $this->defaultValue();
     $this->usePopup();
     return parent::getFields();
 }
コード例 #4
0
ファイル: Spatial.php プロジェクト: nabble/ajde-core
 public function getFields()
 {
     $this->required();
     $this->readonly();
     $this->help();
     $this->defaultValue();
     $this->useImage();
     $this->media();
     return parent::getFields();
 }
コード例 #5
0
ファイル: Publish.php プロジェクト: nabble/ajde-core
 public function getFields()
 {
     $this->help();
     $this->stream();
     $this->defaultToggle();
     $this->twitter();
     $this->facebook();
     $this->mail();
     return parent::getFields();
 }
コード例 #6
0
ファイル: Text.php プロジェクト: nabble/ajde-core
 public function getFields()
 {
     $this->required();
     $this->readonly();
     $this->length();
     $this->height();
     $this->help();
     $this->defaultValue();
     $this->useWysiwyg();
     return parent::getFields();
 }