17 lines
263 B
PHP
17 lines
263 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* Primary module hooks for reha module.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Implements hook_theme().
|
||
|
*/
|
||
|
function erable_mod_theme() {
|
||
|
return array(
|
||
|
'svg_mapsites' => array(
|
||
|
'variables' => array('vpw' => null, 'vph' => null, 'sites' => []),
|
||
|
),
|
||
|
);
|
||
|
}
|