function openlayers_theme in Openlayers 6
Same name and namespace in other branches
- 8.4 openlayers.module \openlayers_theme()
- 6.2 openlayers.module \openlayers_theme()
- 7.3 openlayers.module \openlayers_theme()
- 7.2 openlayers.module \openlayers_theme()
Implementation of hook_theme().
File
- ./
openlayers.module, line 70 - Main OpenLayers API File
Code
function openlayers_theme($existing, $type, $theme, $path) {
return array(
'openlayers_map' => array(
'arguments' => array(
'map' => array(),
),
'file' => 'includes/openlayers.theme.inc',
),
'openlayers_vector_styles' => array(
'arguments' => array(
'styles' => array(),
'map' => array(),
),
'file' => 'includes/openlayers.theme.inc',
),
);
}