示例#1
0
文件: Text.php 项目: guratr/cruddy
 /**
  * {@inheritdoc}
  */
 public function toArray()
 {
     return ['rows' => $this->get('rows', 3)] + parent::toArray();
 }
示例#2
0
文件: File.php 项目: guratr/cruddy
 /**
  * {@inheritdoc}
  */
 public function toArray()
 {
     return ['multiple' => $this->many, 'accepts' => $this->get('accepts', $this->defaultAccepts()), 'unique' => true] + parent::toArray();
 }
示例#3
0
 /**
  * {@inheritdoc}
  */
 public function toArray()
 {
     return ['multiple' => $this->isMultiple(), 'reference' => $this->reference->getId()] + parent::toArray();
 }
示例#4
0
文件: Slug.php 项目: guratr/cruddy
 /**
  * {@inheritdoc}
  */
 public function toArray()
 {
     return ['chars' => $this->chars, 'field' => $this->field, 'separator' => $this->separator] + parent::toArray();
 }
示例#5
0
 /**
  * {@inheritdoc}
  */
 public function toArray()
 {
     return ['append' => Helpers::tryTranslate($this->get('append')), 'prepend' => Helpers::tryTranslate($this->get('prepend'))] + parent::toArray();
 }
示例#6
0
文件: Code.php 项目: cruddy/ace
 /**
  * {@inheritdoc}
  */
 public function toArray()
 {
     return ['height' => $this->get('height', config('ace.height', 250)), 'theme' => $this->get('theme', config('ace.theme', 'chrome')), 'mode' => $this->get('mode'), 'wordwrap' => $this->get('wordwrap', config('ace.wordwrap', true))] + parent::toArray();
 }