You are here

profile.author-pane.inc in Author Pane 6

Same filename and directory in other branches
  1. 5 modules/profile.author-pane.inc
  2. 6.2 modules/profile.author-pane.inc

Provides a preprocess function on behalf of the profile module.

File

modules/profile.author-pane.inc
View 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) {

    // As of D6, this just loads the content array and doesn't return anything.
    profile_view_profile($variables['account']);
    $variables['profile'] = $variables['account']->content;
  }
}

Functions

Namesort descending Description
profile_preprocess_author_pane Implementation of hook_preprocess_author_pane().