function device_geolocation_theme in Smart IP 6
Same name and namespace in other branches
- 8.4 modules/device_geolocation/device_geolocation.module \device_geolocation_theme()
- 8.3 modules/device_geolocation/device_geolocation.module \device_geolocation_theme()
- 6.2 modules/device_geolocation/device_geolocation.module \device_geolocation_theme()
- 7.2 modules/device_geolocation/device_geolocation.module \device_geolocation_theme()
- 7 modules/device_geolocation/device_geolocation.module \device_geolocation_theme()
Implements hook_theme()
File
- modules/
device_geolocation/ device_geolocation.module, line 74 - Provides visitor's geographical location using client device location source that implements W3C Geolocation API and Google Geocoding service.
Code
function device_geolocation_theme() {
return array(
'device_geolocation_visitor_info' => array(
'arguments' => array(
'location' => array(),
),
'template' => 'device-geolocation-visitor-info',
'path' => drupal_get_path('module', 'device_geolocation') . '/theme',
),
);
}