*/ class Contentdisposition implements \Magento\Framework\Option\ArrayInterface { /** * @return array */ public function toOptionArray() { return [ ['value' => 'attachment', 'label' => __('attachment')], ['value' => 'inline', 'label' => __('inline')] ]; } }