You are here

function views_bulk_operations_fields_action_theme in Views Bulk Operations (VBO) 6

Same name and namespace in other branches
  1. 6.3 fields.action.inc \views_bulk_operations_fields_action_theme()

Implementation of hook_theme(). Called by VBO on its own hook_theme().

File

actions/fields.action.inc, line 28
Drupal action to set individual field values.

Code

function views_bulk_operations_fields_action_theme() {
  return array(
    'views_bulk_operations_fields_action_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}