userpoints.author-pane.inc in Author Pane 6
Same filename and directory in other branches
Provides a preprocess function on behalf of the userpoints module.
File
modules/userpoints.author-pane.incView source
<?php
/**
* @file
* Provides a preprocess function on behalf of the userpoints module.
*/
/**
* Implementation of hook_preprocess_author_pane().
*/
function userpoints_preprocess_author_pane(&$variables) {
$account_id = $variables['account']->uid;
if ($account_id != 0) {
$variables['userpoints_points'] = userpoints_get_current_points($account_id, 'all');
$variables['userpoints_categories'] = array();
$categories = userpoints_get_categories();
foreach ($categories as $tid => $category) {
$variables['userpoints_categories'][$category] = userpoints_get_current_points($account_id, $tid);
}
}
}
Functions
Name | Description |
---|---|
userpoints_preprocess_author_pane | Implementation of hook_preprocess_author_pane(). |