user_field_extra_fields()Implements hook_field_extra_fields().
modules/user/user.module, line 163
<?php
function user_field_extra_fields() {
$return['user']['user'] = array(
'account' => array(
'label' => 'User name and password',
'description' => t('User module account form elements'),
'weight' => -10,
),
'timezone' => array(
'label' => 'Timezone',
'description' => t('User module timezone form element.'),
'weight' => 6,
),
'summary' => array(
'label' => 'History',
'description' => t('User module history view element.'),
'weight' => 5,
),
);
return $return;
}
?>