You are here

public function openlayers_views_plugin_display_openlayers::options_summary in Openlayers 7.3

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.2 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 64
Display plugin for Openlayers Data

Class

openlayers_views_plugin_display_openlayers
Class openlayers_views_plugin_display_openlayers.

Code

public 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']);
}