b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / a / home / dev2.destoffenstraat.com / vendor / magento / framework / View / Layout /
Filename/home/a/home/dev2.destoffenstraat.com/vendor/magento/framework/View/Layout/Builder.php
Size3.67 kb
Permissionrw-r--r--
Ownerroot : root
Create time21-Aug-2025 12:26
Last modified07-Jan-2021 21:08
Last accessed24-Aug-2025 01:22
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\View\Layout;

use Magento\Framework\App;
use Magento\Framework\Event;
use Magento\Framework\Profiler;
use Magento\Framework\View;

/**
* Class Builder
*/
class Builder implements BuilderInterface
{
/**
* @var \Magento\Framework\Event\ManagerInterface
*/
protected $eventManager;

/**
* @var \Magento\Framework\App\Request\Http
*/
protected $request;

/**
* @var \Magento\Framework\View\LayoutInterface
*/
protected $layout;

/**
* @var bool
*/
protected $isBuilt = false;

/**
* @param View\LayoutInterface $layout
* @param App\Request\Http $request
* @param Event\ManagerInterface $eventManager
*/
public function __construct(
View\LayoutInterface $layout,
App\Request\Http $request,
Event\ManagerInterface $eventManager
) {
$this->layout = $layout;
$this->request = $request;
$this->eventManager = $eventManager;
$this->layout->setBuilder($this);
}

/**
* Build layout structure
*
* @return \Magento\Framework\View\LayoutInterface
*/
public function build()
{
if (!$this->isBuilt) {
$this->isBuilt = true;
$this->loadLayoutUpdates();
$this->generateLayoutXml();
$this->generateLayoutBlocks();
}
return $this->layout;
}

/**
* Load layout updates
*
* @return $this
*/
protected function loadLayoutUpdates()
{
Profiler::start('LAYOUT');
/* dispatch event for adding handles to layout update */
$this->eventManager->dispatch(
'layout_load_before',
['full_action_name' => $this->request->getFullActionName(), 'layout' => $this->layout]
);
Profiler::start('layout_load');

/* load layout updates by specified handles */
$this->layout->getUpdate()->load();

Profiler::stop('layout_load');
Profiler::stop('LAYOUT');
return $this;
}

/**
* Generate layout xml
*
* @return $this
*/
protected function generateLayoutXml()
{
Profiler::start('LAYOUT');
Profiler::start('layout_generate_xml');

/* generate xml from collected text updates */
$this->layout->generateXml();

Profiler::stop('layout_generate_xml');
Profiler::stop('LAYOUT');
return $this;
}

/**
* Generate layout blocks
*
* @return $this
*/
protected function generateLayoutBlocks()
{
$this->beforeGenerateBlock();

Profiler::start('LAYOUT');
/* dispatch event for adding xml layout elements */
$this->eventManager->dispatch(
'layout_generate_blocks_before',
['full_action_name' => $this->request->getFullActionName(), 'layout' => $this->layout]
);
Profiler::start('layout_generate_blocks');

/* generate blocks from xml layout */
$this->layout->generateElements();

Profiler::stop('layout_generate_blocks');
$this->eventManager->dispatch(
'layout_generate_blocks_after',
['full_action_name' => $this->request->getFullActionName(), 'layout' => $this->layout]
);
Profiler::stop('LAYOUT');

$this->afterGenerateBlock();

return $this;
}

/**
* @return $this
*/
protected function beforeGenerateBlock()
{
return $this;
}

/**
* @return $this
*/
protected function afterGenerateBlock()
{
return $this;
}
}