function contact_form_user_profile_form_alter in Contact 6.2
Same name and namespace in other branches
- 7.2 contact.module \contact_form_user_profile_form_alter()
Implements hook_form_FORM_ID_alter().
Add the enable personal contact form to an individual user's account page.
File
- ./
contact.module, line 216 - Enables the use of personal and site-wide contact forms.
Code
function contact_form_user_profile_form_alter(&$form, $form_state) {
if (isset($form['_account']) && isset($form['_category']) && $form['_category']['#value'] == 'account') {
$account = $form['_account']['#value'];
$form['contact'] = array(
'#type' => 'fieldset',
'#title' => t('Contact settings'),
'#weight' => 5,
'#collapsible' => TRUE,
);
$form['contact']['contact'] = array(
'#type' => 'checkbox',
'#title' => t('Personal contact form'),
'#default_value' => !empty($account->contact) ? $account->contact : FALSE,
'#description' => t('Allow other users to contact you via a <a href="@url">personal contact form</a> which keeps your e-mail address hidden. Note that some privileged users such as site administrators are still able to contact you even if you choose to disable this feature.', array(
'@url' => url("user/{$account->uid}/contact"),
)),
);
}
}