You are here

public function Configs::getFunctions in Bamboo Twig 8

List of all Twig functions.

File

bamboo_twig_config/src/TwigExtension/Configs.php, line 38

Class

Configs
Provides a 'Configs' Twig Extensions.

Namespace

Drupal\bamboo_twig_config\TwigExtension

Code

public function getFunctions() {
  return [
    new \Twig_SimpleFunction('get_config', [
      $this,
      'getConfig',
    ]),
    new \Twig_SimpleFunction('get_state', [
      $this,
      'getState',
    ]),
  ];
}