function openlayers_preprocess_openlayers_map in Openlayers 7.2
Preprocess function for openlayers_map
File
- includes/
openlayers.theme.inc, line 13 - This file holds the theme and preprocess functions for openlayers module
Code
function openlayers_preprocess_openlayers_map(&$variables, $hook) {
$map = $variables['map'];
$map['map_name'] = isset($map['map_name']) ? $map['map_name'] : '';
$css_map_name = drupal_clean_css_identifier($map['map_name']);
$links = array();
if (!empty($map['map_name'])) {
$links = array(
'#type' => 'contextual_links',
'#contextual_links' => array(
'openlayers' => array(
'admin/structure/openlayers/maps/list',
array(
$map['map_name'],
),
),
),
);
}
$variables['links'] = render($links);
$variables['container']['classes'] = implode(" ", array(
'contextual-links-region',
'openlayers-container',
'openlayers-container-map-' . $css_map_name,
));
$variables['container']['width'] = $map['width'];
$variables['container']['height'] = $map['height'];
$variables['container']['id'] = 'openlayers-container-' . $map['id'];
$variables['classes_array'][] = 'openlayers-map-' . $css_map_name;
}