You are here

function views_bulk_operations_taxonomy_action_info in Views Bulk Operations (VBO) 6

Same name and namespace in other branches
  1. 6.3 taxonomy.action.inc \views_bulk_operations_taxonomy_action_info()

File

actions/taxonomy.action.inc, line 8

Code

function views_bulk_operations_taxonomy_action_info() {
  if (!module_exists('taxonomy')) {
    return array();
  }
  return array(
    'views_bulk_operations_taxonomy_action' => array(
      'type' => 'node',
      'description' => t('Modify node taxonomy terms'),
      'configurable' => TRUE,
      'behavior' => array(
        'changes_node_property',
      ),
    ),
  );
}