Exemplo n.º 1
0
 /**
  * Get options
  *
  * @return array
  */
 public function toOptionArray()
 {
     $options[] = ['label' => '', 'value' => ''];
     return $options + $this->themeList->getLabels();
 }
Exemplo n.º 2
0
 /**
  * Get options
  *
  * @return array
  */
 public function toOptionArray()
 {
     $options[] = ['label' => 'Default', 'value' => ''];
     return array_merge($options, $this->themeList->getLabels());
 }
Exemplo n.º 3
0
 /**
  * Return list of themes
  *
  * @return array
  */
 public function toOptionArray()
 {
     return $this->list->getLabels();
 }