123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Block\Adminhtml\Order\View\Tab;
- /**
- * Order transactions tab
- *
- * @api
- * @since 100.0.2
- */
- class Transactions extends \Magento\Framework\View\Element\Text\ListText implements
- \Magento\Backend\Block\Widget\Tab\TabInterface
- {
- /**
- * @var \Magento\Framework\AuthorizationInterface
- */
- protected $_authorization;
- /**
- * Core registry
- *
- * @var \Magento\Framework\Registry
- */
- protected $_coreRegistry = null;
- /**
- * @param \Magento\Framework\View\Element\Context $context
- * @param \Magento\Framework\AuthorizationInterface $authorization
- * @param \Magento\Framework\Registry $registry
- * @param array $data
- */
- public function __construct(
- \Magento\Framework\View\Element\Context $context,
- \Magento\Framework\AuthorizationInterface $authorization,
- \Magento\Framework\Registry $registry,
- array $data = []
- ) {
- $this->_authorization = $authorization;
- $this->_coreRegistry = $registry;
- parent::__construct($context, $data);
- }
- /**
- * Retrieve order model instance
- *
- * @return \Magento\Sales\Model\Order
- */
- public function getOrder()
- {
- return $this->_coreRegistry->registry('current_order');
- }
- /**
- * {@inheritdoc}
- */
- public function getTabLabel()
- {
- return __('Transactions');
- }
- /**
- * {@inheritdoc}
- */
- public function getTabTitle()
- {
- return __('Transactions');
- }
- /**
- * {@inheritdoc}
- */
- public function canShowTab()
- {
- return !$this->getOrder()->getPayment()->getMethodInstance()->isOffline();
- }
- /**
- * {@inheritdoc}
- */
- public function isHidden()
- {
- return !$this->_authorization->isAllowed('Magento_Sales::transactions_fetch');
- }
- }
|