function openlayers_style_plugin::get_context_properties in Openlayers 6.2
Get an array of style property callbacks
Return value
Array of <property_name> => <callback_name>
1 call to openlayers_style_plugin::get_context_properties()
- openlayers_style_plugin::can_handle_property in ./
openlayers.module - Return true if this plugin can handle the given property
2 methods override openlayers_style_plugin::get_context_properties()
- openlayers_test_rnd_factor::get_context_properties in tests/
plugins/ style_plugin/ openlayers_test_rnd_factor.inc - Get an array of style property callbacks
- openlayers_test_rnd_int::get_context_properties in tests/
plugins/ style_plugin/ openlayers_test_rnd_int.inc - Get an array of style property callbacks
File
- ./
openlayers.module, line 967 - Main OpenLayers API File
Class
- openlayers_style_plugin
- Base class for style plugins
Code
function get_context_properties() {
return array();
}