function taxonomy_action_info in Views Bulk Operations (VBO) 5
File
- ./
taxonomy.action.inc, line 8
Code
function taxonomy_action_info() {
if (!module_exists('taxonomy')) {
return array();
}
return array(
'taxonomy_action' => array(
'type' => 'node',
'description' => t('Modify node\'s taxonomy terms'),
'configurable' => TRUE,
'behavior' => array(
'changes_node_property',
),
),
);
}