2022-01-18 16:35:47 +01:00
|
|
|
<?php
|
2022-06-29 15:51:46 +02:00
|
|
|
/* Icinga Web 2 | (c) 2022 Icinga GmbH | GPLv2+ */
|
2022-01-18 16:35:47 +01:00
|
|
|
|
|
|
|
namespace Icinga\Less;
|
|
|
|
|
|
|
|
use Less_VisitorReplacing;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ensure that light mode calls have access to the environment in which the mode was defined
|
|
|
|
*/
|
|
|
|
class LightModeVisitor extends Less_VisitorReplacing
|
|
|
|
{
|
|
|
|
use LightModeTrait;
|
|
|
|
|
|
|
|
public $isPreVisitor = true;
|
|
|
|
|
|
|
|
public function visitRulesetCall($c)
|
|
|
|
{
|
2022-02-08 19:59:26 +01:00
|
|
|
return LightModeCall::fromRulesetCall($c)->setLightMode($this->getLightMode());
|
2022-01-18 16:35:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function run($node)
|
|
|
|
{
|
|
|
|
return $this->visitObj($node);
|
|
|
|
}
|
|
|
|
}
|