![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/magento/module-checkout/Block/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Checkout\Block; use Magento\Framework\View\Element\Template; /** * Displays buttons on shopping cart page * * @api * @since 100.0.2 */ class QuoteShortcutButtons extends \Magento\Catalog\Block\ShortcutButtons { /** * @var \Magento\Checkout\Model\Session */ protected $_checkoutSession; /** * @param Template\Context $context * @param \Magento\Checkout\Model\Session $checkoutSession * @param array $data * @codeCoverageIgnore */ public function __construct( Template\Context $context, \Magento\Checkout\Model\Session $checkoutSession, array $data = [] ) { parent::__construct($context, false, null, $data); $this->_checkoutSession = $checkoutSession; } /** * Dispatch shortcuts container event * * @return $this */ protected function _beforeToHtml() { $this->_eventManager->dispatch( 'shortcut_buttons_container', [ 'container' => $this, 'is_catalog_product' => $this->_isCatalogProduct, 'or_position' => $this->_orPosition, 'checkout_session' => $this->_checkoutSession, 'is_shopping_cart' => true ] ); return $this; } }