function bamboo_twig_test_theme in Bamboo Twig 8.3
Same name and namespace in other branches
- 8.5 tests/modules/bamboo_twig_test/bamboo_twig_test.module \bamboo_twig_test_theme()
- 8 tests/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.4 tests/modules/bamboo_twig_test/bamboo_twig_test.module \bamboo_twig_test_theme()
Implements hook_theme().
File
- tests/
modules/ 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_loader' => [
'variables' => [
'variables' => [],
],
'template' => 'loader',
],
'bamboo_twig_test_render' => [
'variables' => [
'variables' => [],
],
'template' => 'render',
],
'bamboo_twig_test_security' => [
'variables' => [
'variables' => [],
],
'template' => 'security',
],
'bamboo_twig_test_config' => [
'variables' => [
'variables' => [],
],
'template' => 'config',
],
'bamboo_twig_test_file' => [
'variables' => [
'variables' => [],
],
'template' => 'file',
],
'bamboo_twig_test_token' => [
'variables' => [
'variables' => [],
],
'template' => 'token',
],
'bamboo_twig_test_path' => [
'variables' => [
'variables' => [],
],
'template' => 'path',
],
'bamboo_twig_test_i18n' => [
'variables' => [
'variables' => [],
],
'template' => 'i18n',
],
'bamboo_twig_test_extensions' => [
'variables' => [
'variables' => [],
],
'template' => 'extensions',
],
];
}