function views_handler_field_taxonomy::render_link

3.x views_handler_field_taxonomy.inc views_handler_field_taxonomy::render_link($data, $values)
2.x views_handler_field_taxonomy.inc views_handler_field_taxonomy::render_link($data, $values)

Render whatever the data is as a link to the taxonomy.

Data should be made XSS safe prior to calling this function.

1 call to views_handler_field_taxonomy::render_link()

File

modules/taxonomy/views_handler_field_taxonomy.inc, line 62
Definition of views_handler_field_taxonomy.

Class

views_handler_field_taxonomy
Field handler to provide simple renderer that allows linking to a taxonomy term.

Code

function render_link($data, $values) {
  $tid = $this->get_value($values, 'tid');
  if (!empty($this->options['link_to_taxonomy']) && !empty($tid) && $data !== NULL && $data !== '') {
    $term = new stdClass();
    $term->tid = $tid;
    $term->vid = $this->get_value($values, 'vid');
    $term->vocabulary_machine_name = $values->{$this->aliases['vocabulary_machine_name']};
    $this->options['alter']['make_link'] = TRUE;
    $uri = entity_uri('taxonomy_term', $term);
    $this->options['alter']['path'] = $uri['path'];
  }

  if (!empty($this->options['convert_spaces'])) {
    $data = str_replace(' ', '-', $data);
  }

  return $data;
}