Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Mode.php
Go to the documentation of this file.
1 <?php
7 
9 
13 class Mode implements OptionSourceInterface
14 {
20  public function toOptionArray()
21  {
22  return [
23  ['value' => '0', 'label' => __('Development')],
24  ['value' => '1', 'label' => __('Live')]
25  ];
26  }
27 }
__()
Definition: __.php:13