You are here

bamboo_twig_test.module in Bamboo Twig 8

Primary module hooks for Bamboo Twig test module.

File

tests/bamboo_twig_test/bamboo_twig_test.module
View source
<?php

/**
 * @file
 * Primary module hooks for Bamboo Twig test module.
 */

/**
 * Implements hook_theme().
 */
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',
    ],
  ];
}

Functions

Namesort descending Description
bamboo_twig_test_theme Implements hook_theme().