This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/views/modules/locale/views_handler_field_locale_group.inc

13 lines
380 B
PHP

<?php
/**
* Field handler to translate a group into its readable form.
*/
class views_handler_field_locale_group extends views_handler_field {
function render($values) {
$groups = module_invoke_all('locale', 'groups');
// Sort the list.
asort($groups);
return isset($groups[$values->{$this->field_alias}]) ? $groups[$values->{$this->field_alias}] : '';
}
}