You are here

public function QuickMap::getAjaxKeys in Openlayers 7.2

Returns an array of keys to use for constructing the correct arguments for an ajax callback to retrieve content of this type. The order of the keys returned affects the order of the args passed in to the render method when called via ajax (see the render() method above).

Overrides QuickContentRenderable::getAjaxKeys

File

plugins/quicktabs/QuickMap.inc, line 43

Class

QuickMap
Class for tab content of type "map" - this is for rendering a map as tab content.

Code

public function getAjaxKeys() {
  return array(
    'map',
  );
}