1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\CustomerData;
- use Magento\Customer\CustomerData\SectionSourceInterface;
- use Magento\Framework\Exception\NoSuchEntityException;
- use Magento\Store\Model\StoreManagerInterface;
- use Temando\Shipping\Model\Checkout\Schema\CheckoutField;
- use Temando\Shipping\Model\Checkout\Schema\CheckoutFieldsSchema;
- use Temando\Shipping\Model\Config\ModuleConfigInterface;
- /**
- * CheckoutFields
- *
- * @package Temando\Shipping\CustomerData
- * @author Christoph Aßmann <christoph.assmann@netresearch.de>
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
- * @link http://www.temando.com/
- */
- class CheckoutFields implements SectionSourceInterface
- {
- /**
- * @var ModuleConfigInterface
- */
- private $moduleConfig;
- /**
- * @var CheckoutFieldsSchema
- */
- private $schema;
- /**
- * @var StoreManagerInterface
- */
- private $storeManager;
- /**
- * @param ModuleConfigInterface $moduleConfig
- * @param CheckoutFieldsSchema $schema
- * @param StoreManagerInterface $storeManager
- */
- public function __construct(
- ModuleConfigInterface $moduleConfig,
- CheckoutFieldsSchema $schema,
- StoreManagerInterface $storeManager
- ) {
- $this->moduleConfig = $moduleConfig;
- $this->schema = $schema;
- $this->storeManager = $storeManager;
- }
- /**
- * Obtain fields data for display in checkout, shipping method step
- *
- * @return string[]
- */
- public function getSectionData()
- {
- try {
- $storeId = $this->storeManager->getStore()->getId();
- } catch (NoSuchEntityException $exception) {
- $storeId = null;
- }
- if (!$this->moduleConfig->isEnabled($storeId)) {
- return ['fields' => []];
- }
- $fields = array_map(function (CheckoutField $field) {
- return $field->toArray();
- }, $this->schema->getFields());
- return ['fields' => $fields];
- }
- }
|