function openlayers_style_delete in Openlayers 7.2
Same name and namespace in other branches
- 6.2 openlayers.module \openlayers_style_delete()
Delete a style object from the database.
Parameters
$style: String identifier of a style or style object with name.
Return value
The results of DB delete.
File
- ./
openlayers.module, line 783 - Main OpenLayers API File
Code
function openlayers_style_delete($style) {
return openlayers_object_delete($style, 'style');
}