You are here

function bamboo_twig_test_theme in Bamboo Twig 8.5

Same name and namespace in other branches
  1. 8 tests/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/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',
    ],
  ];
}