You are here

function hosting_server_handler_field_human_name::construct in Hosting 7.4

Same name and namespace in other branches
  1. 7.3 server/includes/views/handlers/hosting_server_handler_field_human_name.inc \hosting_server_handler_field_human_name::construct()

Constructor; calls to base object constructor.

Overrides views_handler_field::construct

File

server/includes/views/handlers/hosting_server_handler_field_human_name.inc, line 12

Class

hosting_server_handler_field_human_name
A handler for the Site status field.

Code

function construct() {
  parent::construct();
  $this->additional_fields['title'] = array(
    'table' => 'node',
    'field' => 'title',
  );
}