2022-01-18 10:35:47 -05:00
|
|
|
<?php
|
2022-06-29 09:51:46 -04:00
|
|
|
/* Icinga Web 2 | (c) 2022 Icinga GmbH | GPLv2+ */
|
2022-01-18 10:35:47 -05: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 13:59:26 -05:00
|
|
|
return LightModeCall::fromRulesetCall($c)->setLightMode($this->getLightMode());
|
2022-01-18 10:35:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function run($node)
|
|
|
|
|
{
|
|
|
|
|
return $this->visitObj($node);
|
|
|
|
|
}
|
|
|
|
|
}
|