Add support for UpdateUser hook - refs BT#13283

pull/2487/head
Angel Fernando Quiroz Campos 8 years ago
parent e4bbb4f79a
commit e40047113a
  1. 10
      main/auth/profile.php

@ -437,6 +437,12 @@ function check_user_email($email)
$filtered_extension = false;
if ($form->validate()) {
$hook = HookUpdateUser::create();
if ($hook) {
$hook->notifyUpdateUser(HOOK_EVENT_TYPE_PRE);
}
$wrong_current_password = false;
$user_data = $form->getSubmitValues(1);
/** @var User $user */
@ -701,6 +707,10 @@ if ($form->validate()) {
);
Session::write('_user', $userInfo);
if ($hook) {
$hook->notifyUpdateUser(HOOK_EVENT_TYPE_POST);
}
$url = api_get_self();
header("Location: ".$url);
exit;

Loading…
Cancel
Save