![]() 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/old/vendor/magento/module-wishlist/Block/Cart/Item/Renderer/Actions/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Wishlist\Block\Cart\Item\Renderer\Actions; use Magento\Checkout\Block\Cart\Item\Renderer\Actions\Generic; use Magento\Framework\View\Element\Template; use Magento\Wishlist\Helper\Data; /** * Class MoveToWishlist * * @api * @since 100.0.2 */ class MoveToWishlist extends Generic { /** * @var Data */ protected $wishlistHelper; /** * @param Template\Context $context * @param Data $wishlistHelper * @param array $data */ public function __construct( Template\Context $context, Data $wishlistHelper, array $data = [] ) { $this->wishlistHelper = $wishlistHelper; parent::__construct($context, $data); } /** * Check whether "add to wishlist" button is allowed in cart * * @return bool */ public function isAllowInCart() { return $this->wishlistHelper->isAllowInCart(); } /** * Get JSON POST params for moving from cart * * @return string */ public function getMoveFromCartParams() { return $this->wishlistHelper->getMoveFromCartParams($this->getItem()->getId()); } }