You are here

public function views_plugin_style::destroy in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 plugins/views_plugin_style.inc \views_plugin_style::destroy()
  2. 6.2 plugins/views_plugin_style.inc \views_plugin_style::destroy()

Destructor.

Overrides views_object::destroy

File

plugins/views_plugin_style.inc, line 71
Definition of views_plugin_style.

Class

views_plugin_style
Base class to define a style plugin handler.

Code

public function destroy() {
  parent::destroy();
  if ($this->row_plugin) {
    $this->row_plugin
      ->destroy();
  }
}