You are here

function _views_bulk_operations_get_oid in Views Bulk Operations (VBO) 6

Same name and namespace in other branches
  1. 6.3 views_bulk_operations.module \_views_bulk_operations_get_oid()

Helper callback for array_walk().

3 string references to '_views_bulk_operations_get_oid'
views_bulk_operations_content_taxonomy_action_form in actions/content_taxonomy.action.inc
views_bulk_operations_fields_action_form in actions/fields.action.inc
Action form function.
views_bulk_operations_taxonomy_action_form in actions/taxonomy.action.inc

File

./views_bulk_operations.module, line 2029
Allows operations to be performed on items selected in a view.

Code

function _views_bulk_operations_get_oid($row, $base_field) {
  return $row->{$base_field};
}