function profile_user_delete
Implements hook_user_delete().
Archivo
- drupal-7.x/
modules/ profile/ profile.module, line 244 - Support for configurable user profiles.
Código
function profile_user_delete($account) {
db_delete('profile_value')->condition('uid', $account->uid)->execute();
}