You are here

uc_views_handler_field_country.inc in Ubercart Views 6.3

Same filename and directory in other branches
  1. 6.2 views/uc_views_handler_field_country.inc

Views handler: Return country name for country id

File

views/uc_views_handler_field_country.inc
View source
<?php

/**
 * @file
 * Views handler: Return country name for country id
 */

/**
 * Return a country name for country id
 */
class uc_views_handler_field_country extends views_handler_field {
  function render($values) {
    return uc_country_get_by_id($values->{$this->field_alias});
  }

}

Classes

Namesort descending Description
uc_views_handler_field_country Return a country name for country id