You are here

function layouter_extension_example_theme in Layouter - WYSIWYG layout templates 8

Same name and namespace in other branches
  1. 7 modules/layouter_extension_example/layouter_extension_example.module \layouter_extension_example_theme()

Implements hook_theme().

File

modules/layouter_extension_example/layouter_extension_example.module, line 45
Contains hook implementations.

Code

function layouter_extension_example_theme($existing, $type, $theme, $path) {
  return [
    'layouter_extension_example_one_column_width_500' => [
      'variables' => [
        'text' => NULL,
      ],
      'template' => 'one_column_width_500',
    ],
  ];
}