function profile_theme
Same name and namespace in other branches
- 7.x drupal-7.x/modules/profile/profile.module \profile_theme()
Implementation of hook_theme()
Archivo
- drupal-6.x/
modules/ profile/ profile.module, line 53 - Support for configurable user profiles.
Código
function profile_theme() {
return array(
'profile_block' => array(
'arguments' => array(
'account' => NULL,
'fields' => array(),
),
'template' => 'profile-block',
),
'profile_listing' => array(
'arguments' => array(
'account' => NULL,
'fields' => array(),
),
'template' => 'profile-listing',
),
'profile_wrapper' => array(
'arguments' => array('content' => NULL),
'template' => 'profile-wrapper',
),
'profile_admin_overview' => array(
'arguments' => array('form' => NULL),
'file' => 'profile.admin.inc',
),
);
}