X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;ds=sidebyside;f=include%2Fvalidations%2Fhomonymes.inc.php;h=ac9de9147edc356eaa4aa8bcef05391572cbde29;hb=dd9bac8f7903e9924525ad8db3e38650ff5ad1b6;hp=c81a17ef7a1f72e6645df5822d8f6170b150cce6;hpb=5ddeb07cc787dd1dc3630a31f1528f5cc7c4d9b9;p=platal.git diff --git a/include/validations/homonymes.inc.php b/include/validations/homonymes.inc.php index c81a17e..ac9de91 100644 --- a/include/validations/homonymes.inc.php +++ b/include/validations/homonymes.inc.php @@ -1,6 +1,6 @@ warning = $warning; - $this->Validate($_uid, true, $this->title()); + parent::__construct($_uid, true, $this->title()); $this->refuse = false; - $this->loginbis = $_loginbis; - $this->homonymes_forlife = $_homonymes_forlife; - } - + // }}} // {{{ title() - - function title() { - return $this->warning?'alerte alias':'robot répondeur'; + + private function title() + { + return $this->warning?'alerte alias':'robot répondeur'; } // }}} // {{{ function formu() - function formu() - { return 'include/form.valid.homonymes.tpl'; } + public function formu() + { + return 'include/form.valid.homonymes.tpl'; + } // }}} // {{{ function _mail_subj - function _mail_subj() + protected function _mail_subj() { - return "[Polytechnique.org/Support] ".($this->warning?"Dans une semaine : suppression de l'alias":"Mise en place du robot")." $loginbis@polytechnique.org"; + return "[Polytechnique.org/Support] ".($this->warning?"Dans une semaine : suppression de l'alias":"Mise en place du robot")." $loginbis@" . $globals->mail->domain; } // }}} // {{{ function _mail_body - - function _mail_body($isok) + + protected function _mail_body($isok) { global $globals; return " -Comme nous t'en avons informé par mail il y a quelques temps, +Comme nous t'en avons informé par mail il y a quelques temps, pour respecter nos engagements en terme d'adresses e-mail devinables, -tu te verras bientôt retirer l'alias ".$this->loginbis."@".$globals->mail->domain." pour +tu te verras bientôt retirer l'alias ".$this->loginbis."@".$globals->mail->domain." pour ne garder que ".$this->forlife."@".$globals->mail->domain.". -Toute personne qui écrira à ".$this->loginbis."@".$globals->mail->domain." recevra la -réponse d'un robot qui l'informera que ".$this->loginbis."@".$globals->mail->domain." +Toute personne qui écrira à ".$this->loginbis."@".$globals->mail->domain." recevra la +réponse d'un robot qui l'informera que ".$this->loginbis."@".$globals->mail->domain." est ambigu pour des raisons d'homonymie et signalera ton email exact."; } // }}} // {{{ function sendmail() - function sendmail($isok) + protected function sendmail($isok) { if (!$isok) return false; global $globals; @@ -110,15 +108,15 @@ est ambigu pour des raisons d'homonymie et signalera ton email exact."; $body = $this->prenom.",\n\n" . $this->_mail_body($isok) . (Env::has('comm') ? "\n\n".Env::v('comm') : '') - . "\n\nCordialement,\nL'équipe Polytechnique.org\n"; + . "\n\nCordialement,\n\n-- \nL'équipe de Polytechnique.org\n"; $mailer->setTxtBody(wordwrap($body)); $mailer->send(); } // }}} // {{{ function commit() - - function commit() + + public function commit() { require_once('homonymes.inc.php'); @@ -127,7 +125,7 @@ est ambigu pour des raisons d'homonymie et signalera ton email exact."; XDB::execute("UPDATE aliases SET type='homonyme',expire=NOW() WHERE alias={?}", $this->loginbis); XDB::execute("REPLACE INTO homonymes (homonyme_id,user_id) VALUES({?},{?})", $this->uid, $this->uid); } - + return true; } @@ -136,5 +134,5 @@ est ambigu pour des raisons d'homonymie et signalera ton email exact."; // }}} -// vim:set et sw=4 sts=4 sws=4 foldmethod=marker: +// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: ?>