You are here

function views_bulk_operations_get_operation_type in Views Bulk Operations (VBO) 7.3

Fetch metadata for a specific operation type plugin.

Parameters

$operation_type: Name of the plugin.

Return value

An array with information about the requested operation type plugin.

1 call to views_bulk_operations_get_operation_type()
views_bulk_operations_get_operation in ./views_bulk_operations.module
Returns an operation instance.

File

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

Code

function views_bulk_operations_get_operation_type($operation_type) {
  ctools_include('plugins');
  return ctools_get_plugins('views_bulk_operations', 'operation_types', $operation_type);
}