You are here

function weight_handler_field_weight::init in Weight 7.2

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

views/weight_handler_field_weight.inc, line 5

Class

weight_handler_field_weight

Code

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