You are here

userpoints.author-pane.inc in Author Pane 6

Provides a preprocess function on behalf of the userpoints module.

File

modules/userpoints.author-pane.inc
View 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

Namesort descending Description
userpoints_preprocess_author_pane Implementation of hook_preprocess_author_pane().