You are here

function openlayers_views_plugin_display_openlayers::options_summary in Openlayers 7.2

Same name and namespace in other branches
  1. 6.2 modules/openlayers_views/views/openlayers_views_plugin_display_openlayers.inc \openlayers_views_plugin_display_openlayers::options_summary()
  2. 7.3 modules/openlayers_views/views/openlayers_views_plugin_display_openlayers.inc \openlayers_views_plugin_display_openlayers::options_summary()

Provide the default summary for options in the views UI.

This output is returned as an array.

Overrides views_plugin_display::options_summary

File

modules/openlayers_views/views/openlayers_views_plugin_display_openlayers.inc, line 39
Display plugin for OpenLayers Data

Class

openlayers_views_plugin_display_openlayers
@file Display plugin for OpenLayers Data

Code

function options_summary(&$categories, &$options) {
  parent::options_summary($categories, $options);
  unset($options['header']);
  unset($options['footer']);
  unset($options['empty']);
  unset($options['exposed_block']);
  unset($options['analyze-theme']);
}