hook_profile_alter

hooks/core.php, line 985

Versions
hooks
hook_profile_alter(&$account)

Perform alterations profile items before they are rendered. You may omit/add/re-sort/re-categorize, etc.

Parameters

$account A user object whose profile is being rendered. Profile items are stored in $account->content.

Valor de retorno

None.

Código

<?php
function hook_profile_alter(&$account) {
  foreach ($account->content AS $key => $field) {
    // do something
  }
}
?>