commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / views / modules / locale / views_handler_field_locale_group.inc
1 <?php
2
3 /**
4 * @file
5 * Definition of views_handler_field_locale_group.
6 */
7
8 /**
9 * Field handler to translate a group into its readable form.
10 *
11 * @ingroup views_field_handlers
12 */
13 class views_handler_field_locale_group extends views_handler_field {
14 function render($values) {
15 $groups = module_invoke_all('locale', 'groups');
16 // Sort the list.
17 asort($groups);
18 $value = $this->get_value($values);
19 return isset($groups[$value]) ? $groups[$value] : '';
20 }
21 }