function openlayers_style_plugins in Openlayers 6.2
Get all style plugins.
Parameters
$reset: Boolean whether to reset cache or not.
Return value
Array of style handler info.
3 calls to openlayers_style_plugins()
- openlayers_ui_get_style_plugins_for_property in modules/
openlayers_ui/ includes/ openlayers_ui.styles.inc - Get a list of style plugins providing handling of a given property
- openlayers_ui_get_style_plugin_form in modules/
openlayers_ui/ includes/ openlayers_ui.styles.inc - Get options of a style plugin by plugin name
- _openlayers_styles_process in includes/
openlayers.render.inc - Process Styles
File
- ./
openlayers.module, line 483 - Main OpenLayers API File
Code
function openlayers_style_plugins($reset = FALSE) {
ctools_include('plugins');
return ctools_get_plugins('openlayers', 'style_plugin');
}