function bamboo_twig_test_theme in Bamboo Twig 8
Same name and namespace in other branches
- 8.5 tests/modules/bamboo_twig_test/bamboo_twig_test.module \bamboo_twig_test_theme()
- 8.2 tests/modules/bamboo_twig_test/bamboo_twig_test.module \bamboo_twig_test_theme()
- 8.3 tests/modules/bamboo_twig_test/bamboo_twig_test.module \bamboo_twig_test_theme()
- 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',
],
];
}