You are here

public function pm_handler_field_operation::option_definition in Drupal PM (Project Management) 8

Same name and namespace in other branches
  1. 7.3 includes/views/pm_handler_field_operation.inc \pm_handler_field_operation::option_definition()
  2. 7 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.

File

includes/views/pm_handler_field_operation.inc, line 14
Field handler for PM operation (edit and delete) links.

Class

pm_handler_field_operation
Field handler for PM operation (edit and delete) links.

Code

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