![]() 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-page-cache/Controller/Block/ |
<?php /** * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Controller\Block; use Magento\Framework\App\Action\HttpGetActionInterface; class Render extends \Magento\PageCache\Controller\Block implements HttpGetActionInterface { /** * Returns block content depends on ajax request * * @return void */ public function execute() { if (!$this->getRequest()->isAjax()) { $this->_forward('noroute'); return; } // disable profiling during private content handling AJAX call \Magento\Framework\Profiler::reset(); $currentRoute = $this->getRequest()->getRouteName(); $currentControllerName = $this->getRequest()->getControllerName(); $currentActionName = $this->getRequest()->getActionName(); $currentRequestUri = $this->getRequest()->getRequestUri(); $origRequest = $this->getRequest()->getParam('originalRequest'); if ($origRequest !== null) { if ($origRequest && is_string($origRequest)) { $origRequest = json_decode($origRequest, true); } $this->getRequest()->setRouteName($origRequest['route']); $this->getRequest()->setControllerName($origRequest['controller']); $this->getRequest()->setActionName($origRequest['action']); $this->getRequest()->setRequestUri($origRequest['uri']); } /** @var \Magento\Framework\View\Element\BlockInterface[] $blocks */ $blocks = $this->_getBlocks(); $data = []; foreach ($blocks as $blockName => $blockInstance) { $data[$blockName] = $blockInstance->toHtml(); } $this->getRequest()->setRouteName($currentRoute); $this->getRequest()->setControllerName($currentControllerName); $this->getRequest()->setActionName($currentActionName); $this->getRequest()->setRequestUri($currentRequestUri); $this->getResponse()->setPrivateHeaders(\Magento\PageCache\Helper\Data::PRIVATE_MAX_AGE_CACHE); $this->translateInline->processResponseBody($data); $this->getResponse()->appendBody(json_encode($data)); } }