You are here

function location_handler_argument_location_country::summary_name in Location 6.3

Same name and namespace in other branches
  1. 7.5 handlers/location_handler_argument_location_country.inc \location_handler_argument_location_country::summary_name()
  2. 7.3 handlers/location_handler_argument_location_country.inc \location_handler_argument_location_country::summary_name()
  3. 7.4 handlers/location_handler_argument_location_country.inc \location_handler_argument_location_country::summary_name()

File

handlers/location_handler_argument_location_country.inc, line 14

Class

location_handler_argument_location_country
Argument handler to accept a country code or name.

Code

function summary_name($data) {
  $value = $data->{$this->name_alias};
  if (empty($value)) {
    return t('Unknown');
  }
  return location_country_name($value);
}