self::MODE_DISTANCE, 'label' => __('Distance')], ['value' => self::MODE_TIME, 'label' => __('Time to destination')], ]; } /** * 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; } }