Disable mail-related reminders when the user has an account without email.
[platal.git] / include / reminder / email_warning.inc.php
index f20cdb5..887f5a9 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2009 Polytechnique.org                              *
+ *  Copyright (C) 2003-2010 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -28,17 +28,25 @@ class ReminderEmailWarning extends Reminder
         }
     }
 
-    protected function GetDisplayText() {}
-
-    public function Display(&$page)
+    public function template()
+    {
+        return 'reminder/email_warning.tpl';
+    }
+    public function title()
     {
-        header('Content-Type: text/html; charset=utf-8');
-        $page->changeTpl('reminder/email_warning.tpl', NO_SKIN);
-        $page->assign('baseurl', $this->GetBaseUrl());
+        return "Problème avec ta redirections d'emails";
+    }
+    public function warning()
+    {
+        return true;
     }
 
     public static function IsCandidate(User &$user, $candidate)
     {
+        if (!$user->checkPerms(User::PERM_MAIL)) {
+            return false;
+        }
+
         return count(S::v('mx_failures', array())) > 0;
     }
 }