Last active
August 29, 2015 13:57
-
-
Save kitikonti/9793371 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @file | |
* This module controls the access to view profile nodes and its email address | |
* field. | |
*/ | |
function mh_profile_access_form_profile_node_form_alter(&$form, &$form_state, $form_id) { | |
$form['field_profile_e_mail']['und'][0]['email']['#description'] = t('new desc.'); | |
$form['field_profile_e_mail']['und'][0]['email']['#disabled'] = TRUE; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment