function action_views_data

Implements hook_views_data().

@todo hook_views_data() is used instead of hook_views_data_alter(), because the alter hook doesn't load the *.views.inc automatically.

File

drupal/core/modules/action/action.views.inc, line 16
Provides views data and handlers for action.module.

Code

function action_views_data() {
  $data['views']['action_bulk_form'] = array(
    'title' => t('Actions bulk form'),
    'help' => t('Add a form element that lets you apply actions to multiple items.'),
    'field' => array(
      'id' => 'action_bulk_form',
    ),
  );
  return $data;
}