geo/geo.module, line 48
- Versions
- 6
geo_theme()
Implementation of hook_theme().
Code
<?php
function geo_theme() {
$file_path = drupal_get_path('module', 'geo') .'/includes';
return array(
'geo_formatter_default' => array(
'arguments' => array('element' => NULL),
'file' => 'geo.formatters.inc',
'path' => $file_path,
),
'geo_formatter_lat' => array(
'arguments' => array('element' => NULL),
'file' => 'geo.formatters.inc',
'path' => $file_path,
),
'geo_formatter_lon' => array(
'arguments' => array('element' => NULL),
'file' => 'geo.formatters.inc',
'path' => $file_path,
),
'geo_formatter_georss' => array(
'arguments' => array('element' => NULL),
'file' => 'geo.formatters.inc',
'path' => $file_path,
),
'geo_formatter_svg' => array(
'arguments' => array('element' => NULL),
'file' => 'geo.formatters.inc',
'path' => $file_path,
),
);
}
?> 