![]() 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/framework/View/Page/Config/Generator/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\View\Page\Config\Generator; use Magento\Framework\View\Layout; use Magento\Framework\View\Page\Config\Structure; class Body implements Layout\GeneratorInterface { /** * Type of generator */ const TYPE = 'body'; /** * @var \Magento\Framework\View\Page\Config */ private $pageConfig; /** * Constructor * * @param \Magento\Framework\View\Page\Config $pageConfig */ public function __construct(\Magento\Framework\View\Page\Config $pageConfig) { $this->pageConfig = $pageConfig; } /** * {@inheritdoc} * * @return string */ public function getType() { return self::TYPE; } /** * {@inheritdoc} * * @param Layout\Reader\Context $readerContext * @param Layout\Generator\Context $generatorContext * @return $this */ public function process(Layout\Reader\Context $readerContext, Layout\Generator\Context $generatorContext) { $structure = $readerContext->getPageConfigStructure(); $this->processBodyClasses($structure); return $this; } /** * Process body classes, add to page configuration from scheduled structure * * @param \Magento\Framework\View\Page\Config\Structure $pageStructure * @return $this */ protected function processBodyClasses(Structure $pageStructure) { foreach ($pageStructure->getBodyClasses() as $class) { $this->pageConfig->addBodyClass($class); } return $this; } }