X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fvalidations%2Fmarketing.inc.php;h=adf3fd0310e76bcf058c4f72e256df0008f54eb9;hb=3083bd93007e9be01f0536bcb7047989c2bd153e;hp=81638e9d82d5257ba4ec9ecd905df98ef850b5b6;hpb=b489e07d2c0e7f76eb7a7bff8b7f214dd2724130;p=platal.git diff --git a/include/validations/marketing.inc.php b/include/validations/marketing.inc.php index 81638e9..adf3fd0 100644 --- a/include/validations/marketing.inc.php +++ b/include/validations/marketing.inc.php @@ -1,6 +1,6 @@ Validate($sender, false, 'marketing'); + public function __construct($sender, $mark_id, $email, $perso, $type, $data) + { + parent::__construct($sender, false, 'marketing'); $this->m_id = $mark_id; $this->m_email = $email; $this->perso = $perso; + $this->m_type = $type; + $this->m_data = $data; - $res = XDB::query('SELECT u.nom, u.prenom, u.promo, + $res = XDB::query('SELECT u.nom, u.prenom, u.promo FROM auth_user_md5 AS u WHERE user_id = {?} GROUP BY u.user_id', $mark_id); - list ($this->m_nom, $this->m_prenom, $this->m_promo) = $res->fetchOneRow(); + list ($this->m_nom, $this->m_prenom, $this->m_promo) = $res->fetchOneRow(); } // }}} // {{{ function formu() - function formu() + public function formu() { $res = XDB::query('SELECT IF(MAX(m.last)>p.relance, MAX(m.last), p.relance) FROM auth_user_md5 AS u @@ -70,8 +75,8 @@ class MarkReq extends Validate // }}} // {{{ function _mail_subj - - function _mail_subj() + + protected function _mail_subj() { return "[Polytechnique.org] Marketing de {$this->m_prenom} {$this->m_nom} ({$this->m_promo})"; } @@ -79,30 +84,33 @@ class MarkReq extends Validate // }}} // {{{ function _mail_body - function _mail_body($isok) + protected function _mail_body($isok) { if ($isok) { - return " Un mail de marketing vient d'être envoyé " + return " Un mail de marketing vient d'être envoyé " .($this->perso ? 'en ton nom' : 'en notre nom') - ." à {$this->m_prenom} {$this->m_nom} ({$this->m_promo}) pour l'encourager à s'inscrire !\n\n" + ." à {$this->m_prenom} {$this->m_nom} ({$this->m_promo}) pour l'encourager à s'inscrire !\n\n" ."Merci de ta participation !\n"; } else { - return " Nous n'avons pas jugé bon d'envoyer de mail de marketing à {$this->m_prenom} {$this->m_nom} ({$this->m_promo})."; + return " Nous n'avons pas jugé bon d'envoyer de mail de marketing à {$this->m_prenom} {$this->m_nom} ({$this->m_promo})."; } } // }}} // {{{ function commit() - function commit() + public function commit() { - require_once('marketing.inc.php'); - mark_send_mail($this->m_id, $this->m_email,(!$this->perso)?"staff":"user"); + $market = Marketing::get($this->m_id, $this->m_email); + if ($market == null) { + return false; + } + $market->send(); return true; } // }}} } -// 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: ?>