1 views_handler_field_node_revision.inc | views_handler_field_node_revision::init(&$view, &$options) |
init the handler with necessary data.
Parameters
$view: The $view object this handler is attached to.
$options: The item from the database; the actual contents of this will vary based upon the type of handler.
Overrides views_handler_field_node::init
File
- core/
modules/ node/ views/ views_handler_field_node_revision.inc, line 17 - Definition of views_handler_field_node_revision.
Class
- views_handler_field_node_revision
- A basic node_revision handler.
Code
function init(&$view, &$options) {
parent::init($view, $options);
if (!empty($this->options['link_to_node_revision'])) {
$this->additional_fields['vid'] = 'vid';
$this->additional_fields['nid'] = 'nid';
if (module_exists('translation')) {
$this->additional_fields['langcode'] = array('table' => 'node', 'field' => 'langcode');
}
}
}