You are here

function simplifying_theme in Simplifying 8

Implements hook_theme().

File

./simplifying.module, line 37
Simplifying module.

Code

function simplifying_theme($existing, $type, $theme, $path) {
  return [
    'simplifying_services' => [
      'variables' => [
        'data' => NULL,
      ],
    ],
    'simplifying_training' => [
      'variables' => [
        'data' => NULL,
      ],
    ],
  ];
}