You are here

function biblio_handler_field_contributor::construct in Bibliography Module 6.2

Same name and namespace in other branches
  1. 6 views/biblio_handler_field_contributor.inc \biblio_handler_field_contributor::construct()

File

views/biblio_handler_field_contributor.inc, line 8
Views biblio contributor handler for Drupal biblio module.

Class

biblio_handler_field_contributor
@file Views biblio contributor handler for Drupal biblio module.

Code

function construct() {
  module_load_include('inc', 'biblio', 'includes/biblio_theme');
  parent::construct();
  $this->additional_fields['vid'] = array(
    'table' => 'biblio',
    'field' => 'vid',
  );
  $this->auth_category = isset($this->definition['auth_category']) ? $this->definition['auth_category'] : 1;
}