1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Block\Adminhtml\Order\View;
- use Magento\Framework\View\Element\Message\InterpretationStrategyInterface;
- use Magento\Sales\Model\Order;
- /**
- * Order view messages
- *
- * @api
- * @author Magento Core Team <core@magentocommerce.com>
- * @since 100.0.2
- */
- class Messages extends \Magento\Framework\View\Element\Messages
- {
- /**
- * Core registry
- *
- * @var \Magento\Framework\Registry
- */
- protected $coreRegistry = null;
- /**
- * @param \Magento\Framework\View\Element\Template\Context $context
- * @param \Magento\Framework\Message\Factory $messageFactory
- * @param \Magento\Framework\Message\CollectionFactory $collectionFactory
- * @param \Magento\Framework\Message\ManagerInterface $messageManager
- * @param InterpretationStrategyInterface $interpretationStrategy
- * @param \Magento\Framework\Registry $registry
- * @param array $data
- */
- public function __construct(
- \Magento\Framework\View\Element\Template\Context $context,
- \Magento\Framework\Message\Factory $messageFactory,
- \Magento\Framework\Message\CollectionFactory $collectionFactory,
- \Magento\Framework\Message\ManagerInterface $messageManager,
- InterpretationStrategyInterface $interpretationStrategy,
- \Magento\Framework\Registry $registry,
- array $data = []
- ) {
- parent::__construct(
- $context,
- $messageFactory,
- $collectionFactory,
- $messageManager,
- $interpretationStrategy,
- $data
- );
- $this->coreRegistry = $registry;
- }
- /**
- * Retrieve order model instance
- *
- * @return Order
- */
- protected function _getOrder()
- {
- return $this->coreRegistry->registry('sales_order');
- }
- /**
- * Preparing global layout
- *
- * @return $this
- */
- protected function _prepareLayout()
- {
- /**
- * Check Item products existing
- */
- $productIds = [];
- foreach ($this->_getOrder()->getAllItems() as $item) {
- $productIds[] = $item->getProductId();
- }
- return parent::_prepareLayout();
- }
- }
|