-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathLayoutLoadBeforeObserver.php
48 lines (42 loc) · 1.17 KB
/
LayoutLoadBeforeObserver.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
* Copyright © Magefan (support@magefan.com). All rights reserved.
* Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement).
*
* Glory to Ukraine! Glory to the heroes!
*/
declare(strict_types = 1);
namespace Magefan\LazyLoad\Observer;
use Magefan\LazyLoad\Model\Config;
use Magento\Framework\Event\ObserverInterface;
/**
* Class LayoutLoadBeforeObserver used to add attribute to layout
*/
class LayoutLoadBeforeObserver implements ObserverInterface
{
/**
* @var Config
*/
protected $config;
/**
* LayoutLoadBeforeObserver constructor.
* @param Config $config
*/
public function __construct(
Config $config
) {
$this->config = $config;
}
/**
* @param \Magento\Framework\Event\Observer $observer
* @return void
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function execute(\Magento\Framework\Event\Observer $observer)
{
if ($this->config->getEnabled() && $this->config->isNoScriptEnabled()) {
$layout = $observer->getLayout();
$layout->getUpdate()->addHandle('mflazyzoad_no_js');
}
}
}