You are here

public function StylePluginBase::destroy in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/style/StylePluginBase.php \Drupal\views\Plugin\views\style\StylePluginBase::destroy()
  2. 9 core/modules/views/src/Plugin/views/style/StylePluginBase.php \Drupal\views\Plugin\views\style\StylePluginBase::destroy()

Clears a plugin.

Overrides PluginBase::destroy

File

core/modules/views/src/Plugin/views/style/StylePluginBase.php, line 134

Class

StylePluginBase
Base class for views style plugins.

Namespace

Drupal\views\Plugin\views\style

Code

public function destroy() {
  parent::destroy();
  if (isset($this->view->rowPlugin)) {
    $this->view->rowPlugin
      ->destroy();
  }
}