biblio_handler_field_export_link.inc in Bibliography Module 6.2
Same filename and directory in other branches
Views biblio export link handler for Drupal biblio module.
File
views/biblio_handler_field_export_link.incView source
<?php
/**
* @file
* Views biblio export link handler for Drupal biblio module.
*/
class biblio_handler_field_export_link extends views_handler_field {
function init(&$view, $options) {
parent::init($view, $options);
$this->additional_fields['nid'] = array(
'table' => 'node',
'field' => 'nid',
);
}
function query() {
$this
->add_additional_fields();
}
function option_definition() {
$options = parent::option_definition();
$options['text'] = array(
'default' => '',
'translatable' => TRUE,
);
return $options;
}
function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
$form['text'] = array(
'#type' => 'textfield',
'#title' => t('Text to display'),
'#default_value' => $this->options['text'],
);
}
}
Classes
Name | Description |
---|---|
biblio_handler_field_export_link | @file Views biblio export link handler for Drupal biblio module. |