You are here

function theme_views_bulk_operations_view in Views Bulk Operations (VBO) 5

File

./views_bulk_operations.module, line 800
Allow bulk node operations directly within views.

Code

function theme_views_bulk_operations_view($view, $nodes, $type) {
  static $form_suffix;
  if (isset($form_suffix)) {
    $form_suffix++;
  }
  else {
    $form_suffix = 1;
  }
  $output = drupal_get_form('views_bulk_operations_form_' . $form_suffix, $view, $nodes, $type);
  return $output;
}