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