You are here

function views_bulk_operations_get_operation_types in Views Bulk Operations (VBO) 7.3

Fetch metadata for all operation type plugins.

Return value

An array of arrays with information about all available operation types.

1 call to views_bulk_operations_get_operation_types()
views_bulk_operations_get_operation_info in ./views_bulk_operations.module
Gets the info array of an operation from the provider plugin.

File

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

Code

function views_bulk_operations_get_operation_types() {
  ctools_include('plugins');
  return ctools_get_plugins('views_bulk_operations', 'operation_types');
}