You are here

function redirect_handler_field_redirect_source::construct in Redirect 7

Same name and namespace in other branches
  1. 7.2 views/redirect_handler_field_redirect_source.inc \redirect_handler_field_redirect_source::construct()

Construct a new field handler.

Overrides views_handler_field::construct

File

views/redirect_handler_field_redirect_source.inc, line 9
Redirect field handler for {redirect}.source.

Class

redirect_handler_field_redirect_source
@file Redirect field handler for {redirect}.source.

Code

function construct() {
  parent::construct();
  $this->additional_fields['source'] = 'source';
  $this->additional_fields['source_options'] = 'source_options';
}