X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Freminder%2Fprofile_update.inc.php;h=c1ab4dfc22eca4aea5fda6bf261c904b36c2b67e;hb=97980d82cffb765e16502de2d1fb694d69631b25;hp=7dd5f1bd2b9f756f40fa6aa8a136caf9926dfe1f;hpb=1c4a1d0a32c52851e9ffbbf585bb206c9a472dc9;p=platal.git diff --git a/include/reminder/profile_update.inc.php b/include/reminder/profile_update.inc.php index 7dd5f1b..c1ab4df 100644 --- a/include/reminder/profile_update.inc.php +++ b/include/reminder/profile_update.inc.php @@ -1,6 +1,6 @@ UpdateOnDismiss(); - pl_redirect('profile/edit'); + pl_redirect('profile/edit/' . $this->user->profile()->hrpid); break; case 'photo': @@ -40,16 +40,29 @@ class ReminderProfileUpdate extends Reminder case 'geoloc': $this->UpdateOnDismiss(); - pl_redirect('profile/edit/adresses'); + pl_redirect('profile/edit/' . $this->user->profile()->hrpid . '/adresses'); + break; + + case 'merge': + $this->UpdateOnDismiss(); + $flags = self::ListMergeIssues($this->user->profile()); + if ($flags->hasFlag('job')) { + pl_redirect('profile/edit/' . $this->user->profile()->hrpid . '/emploi'); + } else if ($flags->hasFlag('address')) { + pl_redirect('profile/edit/' . $this->user->profile()->hrpid . '/adresses'); + } else { + pl_redirect('profile/edit/' . $this->user->profile()->hrpid); + } break; } } - public function Prepare(&$page) + public function Prepare($page) { parent::Prepare($page); $profile = $this->user->profile(); + $page->assign('profile_merge', self::ListMergeIssues($profile)); $page->assign('profile_incitation', $profile->is_old); $page->assign('profile_last_update', $profile->last_change); $page->assign('photo_incitation', !$profile->has_photo); @@ -69,13 +82,28 @@ class ReminderProfileUpdate extends Reminder return true; } - public static function IsCandidate(User &$user, $candidate) + private static function ListMergeIssues(Profile $profile) + { + if (Platal::globals()->merge->state != 'done') { + return null; + } + $flags = XDB::fetchOneCell('SELECT issues + FROM profile_merge_issues + WHERE pid = {?}', $profile->id()); + if (!$flags) { + return null; + } + return new PlFlagSet($flags); + } + + public static function IsCandidate(User $user, $candidate) { $profile = $user->profile(); if (!$profile) { return false; } - return !$profile->has_photo || $profile->is_old; + return !$profile->has_photo || $profile->is_old + || !is_null(self::ListMergeIssues($profile)); } }