function views_plugin_style::destroy
Same name in other branches
- 7.x-3.x plugins/views_plugin_style.inc \views_plugin_style::destroy()
Overrides views_object::destroy
File
-
plugins/
views_plugin_style.inc, line 63
Class
- views_plugin_style
- Base class to define a style plugin handler.
Code
function destroy() {
parent::destroy();
if (isset($this->row_plugin)) {
$this->row_plugin
->destroy();
}
}