fetchOneCell(); XDB::execute('REPLACE INTO groupex.membres (uid, asso_id) VALUES ({?}, {?})', S::v('uid'), $asso_id); $mmlist = new MMList(S::v('uid'), S::v('password')); $mmlist->subscribe('promo' . S::v('promo')); $this->UpdateOnYes(); break; case 'dismiss': $this->UpdateOnDismiss(); break; case 'no': $this->UpdateOnNo(); break; } } public function text() { return "La liste de diffusion de ta promotion permet de recevoir les informations plus spécifiques de ta promotion pour pouvoir participer plus facilement aux événements qu'elle organise. Tu seras aussi inscrit dans le groupe de la promotion " . $this->user->promo() . '.'; } public function title() { return "Inscription à la liste de diffusion de ta promotion"; } public static function IsCandidate(User &$user, $candidate) { // We only test if the user is in her promotion group for it is too // expensive to check if she is in the corresponding ML as well. $res = XDB::query('SELECT COUNT(*) FROM groupex.membres WHERE uid = {?} AND asso_id = (SELECT id FROM groupex.asso WHERE diminutif = {?})', $user->id(), S::v('promo')); $mlCount = $res->fetchOneCell(); if ($mlCount) { Reminder::MarkCandidateAsAccepted($user->id(), $candidate); } return ($mlCount == 0); } } // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: ?>