ユーザープロファイルフォームからフィールドを非表示にするには、を使用してフィールドの#access
プロパティをFALSEに設定しますhook_form_FORMID_alter
。
次のスニペットは、field_organisation
非管理者のユーザープロファイルフォームからフィールドを非表示にします。
function YOURCUSTOMMODULE_form_user_profile_form_alter(&$form, &$form_state, $form_id) {
$current_user = user_uid_optional_load();
if($current_user->uid != 1) {
$form['field_organisation']['#access'] = FALSE;
}
}
drupalanswersの同様の質問もご覧ください
template_preprocess_user_profileを使用して、ユーザープロファイルページ(フォームではなく)からフィールドを非表示にすることもできます。
次のスニペットは、field_organisation
非管理者のユーザーページからフィールドを非表示にします。
function YOURCUSTOMMODULE_preprocess_user_profile(&$vars) {
$current_user = user_uid_optional_load();
if($current_user->uid != 1) {
unset($vars['user_profile']['field_organisation']);
}
}