You are here

function revisioning_handler_field_node_state::query in Revisioning 6.4

Same name and namespace in other branches
  1. 8 views/revisioning_handler_field_node_state.inc \revisioning_handler_field_node_state::query()
  2. 6.3 views/revisioning_handler_field_node_state.inc \revisioning_handler_field_node_state::query()
  3. 7 views/revisioning_handler_field_node_state.inc \revisioning_handler_field_node_state::query()

File

views/revisioning_handler_field_node_state.inc, line 21
Handler for the 'Node: state' field.

Class

revisioning_handler_field_node_state
@file Handler for the 'Node: state' field.

Code

function query() {

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