You are here

class i18nviews_handler_field_taxonomy in Internationalization Views 6.3

Same name and namespace in other branches
  1. 6.2 includes/i18nviews_handler_field_taxonomy.inc \i18nviews_handler_field_taxonomy

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

Hierarchy

Expanded class hierarchy of i18nviews_handler_field_taxonomy

1 string reference to 'i18nviews_handler_field_taxonomy'
i18nviews_views_data_alter in includes/i18nviews.views.inc
Implemenation of hook_views_data_alter().

File

includes/i18nviews_handler_field_taxonomy.inc, line 7

View source
class i18nviews_handler_field_taxonomy extends views_handler_field_taxonomy {
  function construct() {
    parent::construct();
    $this->additional_fields['tid'] = 'tid';
  }
  function pre_render($values) {
    foreach ($values as $key => $value) {
      if (isset($value->{$this->field_alias})) {
        $tid = $value->{$this->aliases['tid']};
        $values[$key]->{$this->field_alias} = tt('taxonomy:term:' . $tid . ':name', $value->{$this->field_alias});
      }
    }
  }

}

Members