You are here

function tmgmt_node_handler_field_translation_language_status_single::init in Translation Management Tool 7

Init the handler with necessary data.

Parameters

view $view: The $view object this handler is attached to.

array $options: The item from the database; the actual contents of this will vary based upon the type of handler.

Overrides views_handler_field::init

File

sources/node/views/handlers/tmgmt_node_handler_field_translation_language_status_single.inc, line 18

Class

tmgmt_node_handler_field_translation_language_status_single
@todo What is this?

Code

function init(&$view, &$options) {
  parent::init($view, $options);
  $this->additional_fields['nid'] = array(
    'table' => 'node',
    'field' => 'nid',
  );
}