You are here

public function revisioning_handler_field_node_last_editor::query in Revisioning 8

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

Help build the query.

File

views/revisioning_handler_field_node_last_editor.inc, line 28
Handler for the 'Node: last edited by' field.

Class

revisioning_handler_field_node_last_editor
@file Handler for the 'Node: last edited by' field.

Code

public function query() {

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