views_handler_field_countries.inc in Countries 8
Views field handler class for the translatable country properties.
File
views/views_handler_field_countries.incView source
<?php
/**
* @file
* Views field handler class for the translatable country properties.
*/
/**
* Provides a country filter.
*/
class views_handler_field_countries extends views_handler_field {
/**
* Render a translated country name.
*/
function render($values) {
if ($value = $this
->get_value($values, 'iso2')) {
if ($country = country_load($value)) {
return country_property($country, $this->real_field);
}
}
return '';
}
}
Classes
Name | Description |
---|---|
views_handler_field_countries | Provides a country filter. |