Skip to content
Snippets Groups Projects

ISTWCMS-4947: ensure that location address and map either has values or null

Merged Eric Bremner requested to merge feature/ISTWCMS-4947-ebremner-event-data into 1.0.x
1 file
+ 12
5
Compare changes
  • Side-by-side
  • Inline
+ 12
5
@@ -357,11 +357,18 @@ class UWService implements UWServiceInterface {
@@ -357,11 +357,18 @@ class UWService implements UWServiceInterface {
break;
break;
case 'map':
case 'map':
$display = [
// Set the map initially to null, if there are
'type' => 'leaflet_formatter_default',
// coordinates, then will be replaced.
'label' => 'visually_hidden',
$node_data['map'] = NULL;
];
$node_data['map'] = $node->$data->view($display);
// If there are coordinates, set the map.
 
if ($node->$data->getValue()) {
 
$display = [
 
'type' => 'leaflet_formatter_default',
 
'label' => 'visually_hidden',
 
];
 
$node_data['map'] = $node->$data->view($display);
 
}
break;
break;
case 'sources':
case 'sources':
Loading