You are here

function views_bulk_operations_handler_field_operations::get_vbo_option in Views Bulk Operations (VBO) 7.3

Returns the value of a vbo option.

File

views/views_bulk_operations_handler_field_operations.inc, line 258
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

function get_vbo_option($key, $default = NULL) {
  return isset($this->options['vbo_settings'][$key]) ? $this->options['vbo_settings'][$key] : $default;
}