You are here

biblio_handler_field_export_link_bibtex.inc in Bibliography Module 6.2

File

modules/bibtexParse/views/biblio_handler_field_export_link_bibtex.inc
View source
<?php

class biblio_handler_field_export_link_bibtex extends biblio_handler_field_export_link {
  function render($values) {
    if (user_access('show export links')) {
      $base = variable_get('biblio_base', 'biblio');
      $nid = $this
        ->get_value($values, 'nid');
      $this->options['alter']['make_link'] = TRUE;
      $this->options['alter']['path'] = "{$base}/export/bibtex/{$nid}";
      $text = !empty($this->options['text']) ? $this->options['text'] : t('BibTex');
      return $text;
    }
  }

}