You are here

function troll_preprocess_author_pane in Author Pane 6

Same name and namespace in other branches
  1. 6.2 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) {
  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/settings/troll/ip_ban/user/' . $account_id);
  }
}