user_theme()
Implements hook_theme().
File
core/modules/user/user.module, line 97 Enables the user registration and login system.
Code
function user_theme() {
return array(
'user' => array(
'render element' => 'elements',
),
'username' => array(
'variables' => array('account' => NULL, 'attributes' => array(), 'link_options' => array()),
),
);
}