You are here

function views_bulk_operations_plugin_style::strip_view in Views Bulk Operations (VBO) 6.3

File

./views_bulk_operations_plugin_style.inc, line 271

Class

views_bulk_operations_plugin_style

Code

function strip_view() {
  if (isset($this->view->query->pager)) {
    $this->view->pager_original = $this->view->query->pager;
    $this->view->query->pager = NULL;
  }
  $this->view->exposed_widgets = NULL;
  $this->view->display_handler
    ->set_option('header', '');
  $this->view->display_handler
    ->set_option('footer', '');
  $this->view->display_handler
    ->set_option('use_pager', FALSE);
  $this->view->attachment_before = '';
  $this->view->attachment_after = '';
  $this->view->feed_icon = NULL;
}