コード例 #1
0
ファイル: ArrayField.php プロジェクト: watoki/qrator
 /**
  * @return array
  */
 protected function getModel()
 {
     return array_merge(parent::getModel(), ['inner' => $this->wrapInnerField()]);
 }
コード例 #2
0
ファイル: SelectField.php プロジェクト: watoki/qrator
 protected function getModel()
 {
     return array_merge(parent::getModel(), ['options' => $this->getOptions(), 'selected' => $this->getValue()]);
 }
コード例 #3
0
ファイル: TextField.php プロジェクト: watoki/qrator
 protected function getModel()
 {
     return array_merge(parent::getModel(), ['class' => $this->getClass(), 'rows' => '5']);
 }