You are here

function workflow_extensions_handler_field_state_change_form::query in Workflow Extensions 7

Same name and namespace in other branches
  1. 6 views/workflow_extensions_handler_field_state_change_form.inc \workflow_extensions_handler_field_state_change_form::query()

Called to add the field to a query.

Overrides views_handler_field::query

File

views/workflow_extensions_handler_field_state_change_form.inc, line 19
Handler for the 'Workflow: state change form' field.

Class

workflow_extensions_handler_field_state_change_form
@file Handler for the 'Workflow: state change form' field.

Code

function query() {

  // Not calling parent::query() as it will treat this as a real db field.
  $this
    ->ensure_my_table();
  $this
    ->add_additional_fields();
}