You are here

fasttoggle.author-pane.inc in Author Pane 5

Provides a preprocess function on behalf of the fasttoggle module.

File

modules/fasttoggle.author-pane.inc
View source
<?php

/**
 * @file
 *   Provides a preprocess function on behalf of the fasttoggle module.
 */

/**
 * Implementation of hook_preprocess_author_pane().
 */
function fasttoggle_preprocess_author_pane(&$variables) {

  // The full user object for the author
  global $user;
  $account_id = $variables['account']->uid;
  if ($account_id != 0 && $account_id != $user->uid) {
    $account = $variables['account'];
    $variables['fasttoggle_block_author'] = theme('links', fasttoggle_link('user', $account), array(
      'class' => 'links inline',
    ));
  }
}

Functions

Namesort descending Description
fasttoggle_preprocess_author_pane Implementation of hook_preprocess_author_pane().