function userpoints_theme in User Points 6
Same name and namespace in other branches
- 7.2 userpoints.module \userpoints_theme()
- 7 userpoints.module \userpoints_theme()
Implementation of hook_theme().
File
- ./
userpoints.module, line 213
Code
function userpoints_theme() {
return array(
'userpoints_list_users' => array(
'arguments' => array(
'header' => NULL,
'rows' => NULL,
'tid' => NULL,
'pager_limit' => NULL,
),
),
'userpoints_list_users_header' => array(
'arguments' => array(),
),
'userpoints_list_users_row' => array(
'arguments' => array(
'row' => NULL,
),
),
'userpoints_list_my_userpoints' => array(
'arguments' => array(
'args' => NULL,
'header' => NULL,
'rows' => NULL,
),
),
);
//return array
}