Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
PriceType.php
Go to the documentation of this file.
1 <?php
7 
9 {
13  protected $_options;
14 
18  public function __construct()
19  {
20  $this->_options = [
21  ['value' => 0, 'label' => __('Excluding Tax')],
22  ['value' => 1, 'label' => __('Including Tax')],
23  ];
24  }
25 
29  public function toOptionArray()
30  {
31  return $this->_options;
32  }
33 }
__()
Definition: __.php:13