profile.author-pane.inc in Author Pane 5
Same filename and directory in other branches
Provides a preprocess function on behalf of the profile module.
File
modules/profile.author-pane.incView source
<?php
/**
* @file
* Provides a preprocess function on behalf of the profile module.
*/
/**
* Implementation of hook_preprocess_author_pane().
*/
function profile_preprocess_author_pane(&$variables) {
$account_id = $variables['account']->uid;
if ($account_id != 0) {
$variables['profile'] = profile_view_profile($variables['account']);
}
}
Functions
Name | Description |
---|---|
profile_preprocess_author_pane | Implementation of hook_preprocess_author_pane(). |