You are here

function troll_preprocess_author_pane in Author Pane 6.2

Same name and namespace in other branches
  1. 6 modules/troll.author-pane.inc \troll_preprocess_author_pane()

Implementation of hook_preprocess_author_pane().

File

modules/troll.author-pane.inc, line 11
Provides a preprocess function on behalf of the troll module.

Code

function troll_preprocess_author_pane(&$variables) {

  // Check if this preprocess needs to be run given who's calling it.
  if (!author_pane_run_preprocess('troll', $variables['caller'])) {
    return;
  }
  global $user;
  $account_id = $variables['account']->uid;
  if ($account_id != 0 && $account_id != $user->uid && user_access('administer troll')) {
    $variables['troll_ban_author'] = l(t('Ban IP'), 'admin/user/troll/ip_ban/user/' . $account_id);
  }
}