_profile_form_explanation
- Versions
- 4.6 – 7
_profile_form_explanation($field)
Code
modules/profile.module, line 239
<?php
function _profile_form_explanation($field) {
$output = $field->explanation;
if ($field->type == 'list') {
$output .= ' '. t('Put each item on a separate line or separate them by commas. No HTML allowed.');
}
if ($field->visibility == PROFILE_PRIVATE) {
$output .= ' '. t('The content of this field is kept private and will not be shown publicly.');
}
return $output;
}
?>Login or register to post comments 