function theme_userpoints_list_users_header in User Points 6
Same name and namespace in other branches
- 5.3 userpoints.module \theme_userpoints_list_users_header()
1 theme call to theme_userpoints_list_users_header()
File
- ./
userpoints.module, line 1467
Code
function theme_userpoints_list_users_header() {
return array(
array(
'data' => t('User'),
'field' => 'u.name',
),
array(
'data' => t('Category'),
'field' => 't.name',
),
array(
'data' => t('!Points', userpoints_translation()),
'field' => 'p.points',
'sort' => 'desc',
),
);
}