X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fvalidations%2Fhomonymes.inc.php;h=b88586cb424672b20b4b9824c498b0d4098d48e4;hb=eaf30d86cc99df2414cf4f171a9b0f11b0561e3b;hp=0ff23b9f04a67f0102671feb235da9672c2adc5f;hpb=a3a049fc80d3707bcc76903ab89f73974c470c0c;p=platal.git diff --git a/include/validations/homonymes.inc.php b/include/validations/homonymes.inc.php index 0ff23b9..b88586c 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'; } // }}} - // {{{ function get_request() + // {{{ title() - function get_request($uid) + private function title() { - return parent::get_request($uid,$this->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; - require_once('diogenes/diogenes.hermes.inc.php'); - $mailer = new HermesMailer; + $mailer = new PlMailer; $cc = "support+homonyme@".$globals->mail->domain; $FROM = "\"Support Polytechnique.org\" <$cc>"; $mailer->setSubject($this->_mail_subj()); @@ -118,16 +107,16 @@ 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::get('comm') : '') - . "\n\nCordialement,\nL'équipe Polytechnique.org\n"; + . (Env::has('comm') ? "\n\n".Env::v('comm') : '') + . "\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'); @@ -136,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; } @@ -145,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: ?>