You are here

public function TwigExtension::getFunctions in Menus attribute 8

In this function we can declare the extension function.

File

src/Template/TwigExtension.php, line 22

Class

TwigExtension
TwigExtension class returns menus attribute for each menu item and link.

Namespace

Drupal\menus_attribute\Template

Code

public function getFunctions() {
  return [
    new \Twig_SimpleFunction('menus_attribute', [
      $this,
      'menusAttribute',
    ]),
    new \Twig_SimpleFunction('test_menu', [
      $this,
      'test',
    ]),
  ];
}