You are here

function hook_views_bulk_operations_object_info_alter in Views Bulk Operations (VBO) 6

Hook used by VBO to allow altering the object_info structure returned by other modules.

1 invocation of hook_views_bulk_operations_object_info_alter()
_views_bulk_operations_get_object_info in ./views_bulk_operations.module
Helper function to return all object info.

File

./views_bulk_operations.api.php, line 46
Documentation of hooks.

Code

function hook_views_bulk_operations_object_info_alter(&$object_info) {
  $object_info['node']['load'] = '_my_special_node_load_callback';
}