function views_handler_field_term_link_edit::construct
Overrides views_handler_field::construct
File
-
modules/
taxonomy/ views_handler_field_term_link_edit.inc, line 18
Class
- views_handler_field_term_link_edit
- Field handler to present a term edit link.
Code
public function construct() {
parent::construct();
$this->additional_fields['tid'] = 'tid';
$this->additional_fields['vid'] = 'vid';
$this->additional_fields['vocabulary_machine_name'] = array(
'table' => 'taxonomy_vocabulary',
'field' => 'machine_name',
);
}