geocode/modules/geocode_widget/geocode_widget.module, line 5
- Versions
- 6
geocode_widget_theme()
Implementation of hook_theme().
Code
<?php
function geocode_widget_theme() {
$path = drupal_get_path('module', 'geocode_widget');
return array(
'geocode_widget_settings_form' => array(
'arguments' => array('form'),
'file' => 'geocode_widget.admin.inc',
'path' => $path .'/includes/',
),
);
}
?> 