function views_bulk_operations_profile_action_info in Views Bulk Operations (VBO) 6.3
Same name and namespace in other branches
- 6 actions/profile.action.inc \views_bulk_operations_profile_action_info()
File
- ./
profile.action.inc, line 3
Code
function views_bulk_operations_profile_action_info() {
if (!module_exists('profile')) {
return array();
}
return array(
'views_bulk_operations_profile_action' => array(
'type' => 'user',
'description' => t('Modify profile fields'),
'configurable' => TRUE,
),
);
}