2024-07-08 16:06:59 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Primary module hooks for reha module.
|
|
|
|
*/
|
|
|
|
|
2024-10-01 21:57:47 +02:00
|
|
|
/**
|
|
|
|
* Implements hook_theme().
|
|
|
|
*/
|
|
|
|
function q2d_mod_theme() {
|
|
|
|
return array(
|
|
|
|
'svg_mapsites' => array(
|
|
|
|
'variables' => array('vpw' => null, 'vph' => null, 'sites' => []),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|