nicemap/nicemap.module, line 47
- Versions
- 6
nicemap_theme($existing, $type, $theme, $path)
Implementation of hook_theme
Code
<?php
function nicemap_theme($existing, $type, $theme, $path) {
return array(
'nicemap_map' => array(
'file' => 'nicemap.theme.inc',
'arguments' => array('points' => array(), 'map' => array(), 'width' => 200, 'height' => 200),
),
'nicemap_point' => array(
'file' => 'nicemap.theme.inc',
'arguments' => array('point' => array()),
),
'nicemap_content' => array(
'file' => 'nicemap.theme.inc',
'arguments' => array('point' => array()),
),
'nicemap_settings_layers' => array(
'file' => 'nicemap_admin.inc',
'arguments' => array('form' => array()),
),
);
}
?> 