You are here

class biblio_handler_field_export_link_ris in Bibliography Module 6.2

Hierarchy

Expanded class hierarchy of biblio_handler_field_export_link_ris

1 string reference to 'biblio_handler_field_export_link_ris'
biblio_ris_views_data in modules/RIS/views/biblio_ris.views.inc

File

modules/RIS/views/biblio_handler_field_export_link_ris.inc, line 2

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

}

Members