fasttoggle.author-pane.inc in Author Pane 5
Same filename and directory in other branches
Provides a preprocess function on behalf of the fasttoggle module.
File
modules/fasttoggle.author-pane.incView 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
Name | Description |
---|---|
fasttoggle_preprocess_author_pane | Implementation of hook_preprocess_author_pane(). |