You are here

class views_bulk_operations_destructor in Views Bulk Operations (VBO) 6

Functor to destroy view on exit.

Hierarchy

Expanded class hierarchy of views_bulk_operations_destructor

File

./views_bulk_operations.module, line 2141
Allows operations to be performed on items selected in a view.

View source
class views_bulk_operations_destructor {
  function __construct($view) {
    $this->view = $view;
  }
  function __destruct() {
    $this->view
      ->destroy();
  }
  private $view;

}

Members