1234567891011121314151617181920 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Tax\Model\Config\Source\Apply;
- class On implements \Magento\Framework\Option\ArrayInterface
- {
- /**
- * @return array
- */
- public function toOptionArray()
- {
- return [
- ['value' => 0, 'label' => __('Custom price if available')],
- ['value' => 1, 'label' => __('Original price only')]
- ];
- }
- }
|