drupal-erable/web/modules/custom/erable_mod/erable_mod.module

18 lines
251 B
PHP
Raw Normal View History

2024-10-30 22:05:15 +01:00
<?php
/**
* @file
* Primary module hooks for reha module.
*/
/**
* Implements hook_theme().
*/
function erable_mod_theme() {
return array(
'svg_mapsites' => array(
2024-11-05 01:44:18 +01:00
'variables' => array('sites' => [], 'intro' => null),
2024-10-30 22:05:15 +01:00
),
);
2024-11-05 01:44:18 +01:00
}