1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Msrp\Block;
/**
* @api
* @method string getOriginalBlockName()
* @since 100.0.2
*/
class Total extends \Magento\Framework\View\Element\Template
{
/**
* @var \Magento\Msrp\Model\Config
*/
protected $config;
/**
* @var \Magento\Msrp\Model\Quote\Msrp
*/
protected $msrp;
/**
* @param \Magento\Framework\View\Element\Template\Context $context
* @param \Magento\Msrp\Model\Config $config
* @param \Magento\Msrp\Model\Quote\Msrp $msrp
* @param array $data
*/
public function __construct(
\Magento\Framework\View\Element\Template\Context $context,
\Magento\Msrp\Model\Config $config,
\Magento\Msrp\Model\Quote\Msrp $msrp,
array $data = []
) {
parent::__construct($context, $data);
$this->config = $config;
$this->msrp = $msrp;
}
/**
* @return string
*/
protected function _toHtml()
{
/** @var \Magento\Checkout\Block\Cart\AbstractCart $originalBlock */
$originalBlock = $this->getLayout()->getBlock($this->getOriginalBlockName());
$quote = $originalBlock->getQuote();
if (!$this->msrp->getCanApplyMsrp($quote->getId()) && $this->config->isEnabled()) {
$quote->collectTotals();
}
if ($this->msrp->getCanApplyMsrp($quote->getId())) {
$originalBlock->setTemplate('');
return parent::_toHtml();
} else {
return '';
}
}
}