You are here

function views_bulk_operations_preprocess_page in Views Bulk Operations (VBO) 7.3

Implements hook_preprocess_page().

Hide action links on the configure and confirm pages.

File

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

Code

function views_bulk_operations_preprocess_page(&$variables) {
  if (isset($_POST['select_all'], $_POST['operation'])) {
    $variables['action_links'] = array();
  }
}