function bakery_field_extra_fields in Bakery Single Sign-On System 7.2
Implements hook_field_extra_fields().
File
- ./
bakery.module, line 240 - Module file for the Bakery.
Code
function bakery_field_extra_fields() {
return array(
'user' => array(
'user' => array(
'display' => array(
'bakery_primary_profile' => array(
'label' => t('Profile on primary site'),
'description' => t('Link to primary site profile.'),
'weight' => 0,
),
),
),
),
);
}