function kml_theme in KML 6.2
Same name and namespace in other branches
- 6 kml.module \kml_theme()
- 7 kml.module \kml_theme()
Implementation of hook_theme().
File
- ./
kml.module, line 21 - KML module.
Code
function kml_theme() {
$path = drupal_get_path('module', 'kml');
return array(
'kml_placemark' => array(
'arguments' => array(
'point' => array(),
'points' => array(),
),
'file' => 'kml_views.theme.inc',
'template' => 'kml-placemark',
'path' => $path . "/views",
),
'kml_feed_icon' => array(
'arguments' => array(),
'file' => 'kml_views.theme.inc',
'path' => $path . "/views",
),
'kml_style' => array(
'arguments' => array(
'points' => array(),
),
'file' => 'kml_style.theme.inc',
'template' => 'kml-style',
'path' => "{$path}/views",
),
);
}