You are here

class biblio_handler_field_export_link_rtf in Bibliography Module 6.2

Hierarchy

Expanded class hierarchy of biblio_handler_field_export_link_rtf

1 string reference to 'biblio_handler_field_export_link_rtf'
biblio_rtf_views_data in modules/rtf/views/biblio_rtf.views.inc

File

modules/rtf/views/biblio_handler_field_export_link_rtf.inc, line 2

View source
class biblio_handler_field_export_link_rtf 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/rtf/{$nid}";
      $text = !empty($this->options['text']) ? $this->options['text'] : t('RTF');
      return $text;
    }
  }

}

Members