X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;ds=sidebyside;f=include%2Fnotifs.inc.php;h=ec9d8bf860a416aafdaba06a3af26bb73accf93d;hb=fb813fb52d5ab65ca9a5b92b5cb9089523380d79;hp=6601c1e689aff780cf0dd791e71002cb52334f1a;hpb=483da16573717c21c7e6da3eacc094048ab7d72f;p=platal.git diff --git a/include/notifs.inc.php b/include/notifs.inc.php index 6601c1e..ec9d8bf 100644 --- a/include/notifs.inc.php +++ b/include/notifs.inc.php @@ -1,6 +1,6 @@ date = $date; if (!$user->watch($this->flag)) { - return new UFC_False(); + return new PFC_False(); } else { return $this->buildCondition($user); } @@ -76,7 +76,7 @@ class WatchProfileUpdate extends WatchOperation protected function buildCondition(PlUser &$user) { - return new UFC_And(new UFC_ProfileUpdated('>', $this->date), + return new PFC_And(new UFC_ProfileUpdated('>', $this->date), new UFC_WatchContact($user)); } @@ -133,8 +133,8 @@ class WatchRegistration extends WatchOperation protected function buildCondition(PlUser &$user) { - return new UFC_And(new UFC_Registered(false, '>', $this->date), - new UFC_Or(new UFC_WatchContact($user), + return new PFC_And(new UFC_Registered(false, '>', $this->date), + new PFC_Or(new UFC_WatchContact($user), new UFC_WatchPromo($user))); } @@ -156,8 +156,8 @@ class WatchDeath extends WatchOperation protected function buildCondition(PlUser &$user) { - return new UFC_And(new UFC_Dead('>', $this->date, true), - new UFC_Or(new UFC_WatchPromo($user), + return new PFC_And(new UFC_Dead('>', $this->date, true), + new PFC_Or(new UFC_WatchPromo($user), new UFC_WatchContact($user))); } @@ -191,10 +191,10 @@ class WatchBirthday extends WatchOperation protected function buildCondition(PlUser &$user) { - return new UFC_And(new UFC_OR(new UFC_Birthday('=', time()), - new UFC_And(new UFC_Birthday('<=', time() + self::WATCH_LIMIT), + return new PFC_And(new PFC_OR(new UFC_Birthday('=', time()), + new PFC_And(new UFC_Birthday('<=', time() + self::WATCH_LIMIT), new UFC_Birthday('>', $this->date + self::WATCH_LIMIT))), - new UFC_Or(new UFC_WatchPromo($user), + new PFC_Or(new UFC_WatchPromo($user), new UFC_WatchContact($user))); }