X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fvalidations%2Fhomonymes.inc.php;h=ac9de9147edc356eaa4aa8bcef05391572cbde29;hb=854aef5e1888607164f4c4a35f0ee0ad5579eb8b;hp=a686525af7cfdc7612ecc54abc0f3482cae14161;hpb=a7de4ef724d1a3b0bf978a50ce7cc9d23412c7a0;p=platal.git diff --git a/include/validations/homonymes.inc.php b/include/validations/homonymes.inc.php index a686525..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() { + + 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 @@ -95,7 +93,7 @@ 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; }