You are here

function bamboo_twig_test_theme in Bamboo Twig 8

Same name and namespace in other branches
  1. 8.5 tests/modules/bamboo_twig_test/bamboo_twig_test.module \bamboo_twig_test_theme()
  2. 8.2 tests/modules/bamboo_twig_test/bamboo_twig_test.module \bamboo_twig_test_theme()
  3. 8.3 tests/modules/bamboo_twig_test/bamboo_twig_test.module \bamboo_twig_test_theme()
  4. 8.4 tests/modules/bamboo_twig_test/bamboo_twig_test.module \bamboo_twig_test_theme()

Implements hook_theme().

File

tests/bamboo_twig_test/bamboo_twig_test.module, line 11
Primary module hooks for Bamboo Twig test module.

Code

function bamboo_twig_test_theme($existing, $type, $theme, $path) {
  return [
    'bamboo_twig_test_loaders' => [
      'variables' => [
        'variables' => [],
      ],
      'template' => 'loaders',
    ],
    'bamboo_twig_test_security' => [
      'variables' => [
        'variables' => [],
      ],
      'template' => 'security',
    ],
    'bamboo_twig_test_configs' => [
      'variables' => [
        'variables' => [],
      ],
      'template' => 'configs',
    ],
    'bamboo_twig_test_files' => [
      'variables' => [
        'variables' => [],
      ],
      'template' => 'files',
    ],
  ];
}