You are here

function example_profile_alter in Coder 7.2

Same name and namespace in other branches
  1. 7 coder_upgrade/tests/old/samples/example.module \example_profile_alter()

Implementation of hook_profile_alter().

Example for hook-user-changes.

File

coder_upgrade/tests/old/samples/example.module, line 2028

Code

function example_profile_alter(&$account) {
  foreach ($account->content as $key => $field) {

    // do something
  }
}