public function views_bulk_operations_handler_field_operations::get_operation_options in Views Bulk Operations (VBO) 7.3
Returns the options stored for the provided operation id.
File
- views/
views_bulk_operations_handler_field_operations.inc, line 344 - Views field handler. Contains all relevant VBO options and related logic. Implements the Views Form API.
Class
- views_bulk_operations_handler_field_operations
- @file Views field handler. Contains all relevant VBO options and related logic. Implements the Views Form API.
Code
public function get_operation_options($operation_id) {
$options = $this->options['vbo_operations'];
return isset($options[$operation_id]) ? $options[$operation_id] : array();
}