theme.php
<?php
// $Id: theme.php,v 1.1.2.3 2009/04/28 16:41:54 darrenoh Exp $
/**
* @file
* Shadow theme functions for theme templates.
*
* This file provides function definitions for output that is generated by theme
* templates by default. Themers who wish to override output with theme
* functions instead of templates can find documentation for those functions
* here.
*
* @addtogroup themeable
* @{
*/
/**
* Theme a user page.
*
* @param $account
* A user object. $account->content contains the content array.
* @return
* A formatted HTML string.
*
* @see template_preprocess_user_profile()
* @see user-profile.tpl.php
*/
function theme_user_profile($account) {
return drupal_render($account->content);
}
/**
* @} End of "addtogroup themeable".
*/