location_handler_field_location_country.inc in Location 6.3
Same filename and directory in other branches
Country field handler.
File
handlers/location_handler_field_location_country.incView source
<?php
/**
* @file
* Country field handler.
*/
class location_handler_field_location_country extends views_handler_field {
function option_definition() {
$options = parent::option_definition();
$options['style'] = array(
'default' => 'name',
);
return $options;
}
function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
$form['style'] = array(
'#title' => t('Display style'),
'#type' => 'select',
'#options' => array(
'name' => t('Country name'),
'code' => t('Country code'),
),
'#default_value' => $this->options['style'],
);
}
function render($values) {
if ($this->options['style'] == 'name') {
return check_plain(location_country_name($values->{$this->field_alias}));
}
else {
return check_plain(strtoupper($values->{$this->field_alias}));
}
}
}
Classes
Name | Description |
---|---|
location_handler_field_location_country | @file Country field handler. |