You are here

function openlayers_behaviors in Openlayers 6.2

Same name and namespace in other branches
  1. 7.2 openlayers.module \openlayers_behaviors()

Get all behaviors.

Parameters

$reset: Boolean whether to reset cache or not.

Return value

Array of behavior info.

3 calls to openlayers_behaviors()
openlayers_cck_widget_settings in modules/openlayers_cck/openlayers_cck.module
Implementation of hook_widget_settings().
openlayers_ui_get_behavior_options in modules/openlayers_ui/includes/openlayers_ui.presets.inc
Get behavior options.
_openlayers_behaviors_render in includes/openlayers.render.inc
Execute render() method for all enabled behaviors.
1 string reference to 'openlayers_behaviors'
openlayers_cck_widget_settings in modules/openlayers_cck/openlayers_cck.module
Implementation of hook_widget_settings().

File

./openlayers.module, line 468
Main OpenLayers API File

Code

function openlayers_behaviors($reset = FALSE) {
  ctools_include('plugins');
  return ctools_get_plugins('openlayers', 'behaviors');
}