manager = $manager; } /** * {@inheritdoc} */ public function getFunctions(): array { return [ new TwigFunction('setting', [$this, 'getSetting']), ]; } public function getSetting(string $code) { $entity = $this->manager->get($code); return $entity ? $entity->getValue() : null; } }