'inline', 'label' => __('Inline')], ['value' => 'bottomright ', 'label' => __('Bottom Right')], ['value' => 'bottomleft', 'label' => __('Bottom Left')], ]; } /** * Get options in "key-value" format * * @return array */ public function toArray() { $options = $this->toOptionArray(); $return = []; foreach ($options as $option) { $return[$option['value']] = $option['label']; } return $return; } }