You are here

function heading_theme in Heading field 8

Implements hook_theme().

File

./heading.module, line 11
Module hooks.

Code

function heading_theme($existing, $type, $theme, $path) {
  return [
    'heading' => [
      'template' => 'heading',
      'path' => $path . '/templates',
      'variables' => [
        'size' => NULL,
        'text' => NULL,
      ],
    ],
  ];
}