1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Ups\Model\Config\Source;
- /**
- * Class Pickup
- */
- class Pickup extends \Magento\Ups\Model\Config\Source\Generic
- {
- /**
- * Carrier code
- *
- * @var string
- */
- protected $_code = 'pickup';
- /**
- * {@inheritdoc}
- */
- public function toOptionArray()
- {
- $ups = $this->carrierConfig->getCode($this->_code);
- $arr = [];
- foreach ($ups as $k => $v) {
- $arr[] = ['value' => $k, 'label' => __($v['label'])];
- }
- return $arr;
- }
- }
|