You are here

function pm_handler_field_operation::option_definition in Drupal PM (Project Management) 7

Same name and namespace in other branches
  1. 8 includes/views/pm_handler_field_operation.inc \pm_handler_field_operation::option_definition()
  2. 7.3 includes/views/pm_handler_field_operation.inc \pm_handler_field_operation::option_definition()
  3. 7.2 includes/views/pm_handler_field_operation.inc \pm_handler_field_operation::option_definition()

Defines views field options.

Overrides views_handler_field_node_link::option_definition

File

./pm_handler_field_operation.inc, line 20
Field handler to present a link node edit.

Class

pm_handler_field_operation
@file Field handler to present a link node edit.

Code

function option_definition() {
  $options['display_add_icon'] = array(
    'default' => TRUE,
  );
  $options['display_icons'] = array(
    'default' => TRUE,
  );
  return $options;
}