1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Block\Guest;
- use Magento\Customer\Model\Context;
- /**
- * "Orders and Returns" link
- *
- * @api
- * @SuppressWarnings(PHPMD.DepthOfInheritance)
- * @since 100.0.2
- */
- class Link extends \Magento\Framework\View\Element\Html\Link\Current
- {
- /**
- * @var \Magento\Framework\App\Http\Context
- */
- protected $httpContext;
- /**
- * @param \Magento\Framework\View\Element\Template\Context $context
- * @param \Magento\Framework\App\DefaultPathInterface $defaultPath
- * @param \Magento\Framework\App\Http\Context $httpContext
- * @param array $data
- */
- public function __construct(
- \Magento\Framework\View\Element\Template\Context $context,
- \Magento\Framework\App\DefaultPathInterface $defaultPath,
- \Magento\Framework\App\Http\Context $httpContext,
- array $data = []
- ) {
- parent::__construct($context, $defaultPath, $data);
- $this->httpContext = $httpContext;
- }
- /**
- * @return string
- */
- protected function _toHtml()
- {
- if ($this->httpContext->getValue(Context::CONTEXT_AUTH)) {
- return '';
- }
- return parent::_toHtml();
- }
- }
|