123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Shipping\Model\Config\Source\Online;
- use Magento\Framework\Data\OptionSourceInterface;
- /**
- * Shippers Modesource model
- */
- class Mode implements OptionSourceInterface
- {
- /**
- * Returns array to be used in packages request type on back-end
- *
- * @return array
- */
- public function toOptionArray()
- {
- return [
- ['value' => '0', 'label' => __('Development')],
- ['value' => '1', 'label' => __('Live')]
- ];
- }
- }
|