Beispiel #1
0
 /**
  * {@inheritdoc}
  */
 public function toArray()
 {
     return ['rows' => $this->get('rows', 3)] + parent::toArray();
 }
Beispiel #2
0
 /**
  * {@inheritdoc}
  */
 public function toArray()
 {
     return ['multiple' => $this->many, 'accepts' => $this->get('accepts', $this->defaultAccepts()), 'unique' => true] + parent::toArray();
 }
Beispiel #3
0
 /**
  * {@inheritdoc}
  */
 public function toArray()
 {
     return ['multiple' => $this->isMultiple(), 'reference' => $this->reference->getId()] + parent::toArray();
 }
Beispiel #4
0
 /**
  * {@inheritdoc}
  */
 public function toArray()
 {
     return ['chars' => $this->chars, 'field' => $this->field, 'separator' => $this->separator] + parent::toArray();
 }
Beispiel #5
0
 /**
  * {@inheritdoc}
  */
 public function toArray()
 {
     return ['append' => Helpers::tryTranslate($this->get('append')), 'prepend' => Helpers::tryTranslate($this->get('prepend'))] + parent::toArray();
 }
Beispiel #6
0
 /**
  * {@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();
 }