![]() 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-product-alert/Controller/Unsubscribe/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\ProductAlert\Controller\Unsubscribe; use Magento\Customer\Model\Session as CustomerSession; use Magento\Framework\App\Action\Context; use Magento\Framework\App\Action\HttpGetActionInterface; use Magento\Framework\View\Result\Page; use Magento\Framework\View\Result\PageFactory; use Magento\ProductAlert\Controller\Unsubscribe as UnsubscribeController; /** * Unsubscribing from 'Back in stock Alert'. * * Is used to transform a Get request that triggered in the email into the Post request endpoint */ class Email extends UnsubscribeController implements HttpGetActionInterface { /** * @var PageFactory */ private $resultPageFactory; /** * @param Context $context * @param PageFactory $resultPageFactory * @param CustomerSession $customerSession */ public function __construct( Context $context, PageFactory $resultPageFactory, CustomerSession $customerSession ) { $this->resultPageFactory = $resultPageFactory; parent::__construct($context, $customerSession); } /** * Processes the the request triggered in Unsubscription email related to 'back in stock alert'. * * @return Page */ public function execute(): Page { $productId = (int)$this->getRequest()->getParam('product'); /** @var Page $resultPage */ $resultPage = $this->resultPageFactory->create(); /** @var @va \Magento\Framework\View\Element\AbstractBlock $block */ $block = $resultPage->getLayout()->getBlock('unsubscription_form'); $block->setProductId($productId); return $resultPage; } }