Bye xorg.misc.inc.php
[platal.git] / include / validations / nl.inc.php
index 447c199..74ff546 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2006 Polytechnique.org                              *
+ *  Copyright (C) 2003-2008 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -27,21 +27,22 @@ class NLReq extends Validate
 {
     // {{{ properties
 
-    var $art;
-    var $rules = "Laisser valider par le NL-MASTER";
-    
+    public $art;
+    public $rules = "Laisser valider par le NL-MASTER";
+
     // }}}
     // {{{ constructor
 
-    function NlReq($uid, $title, $body, $append) {
-        $this->Validate($uid, false, 'nl');
+    public function __construct($uid, $title, $body, $append)
+    {
+        parent::__construct($uid, false, 'nl');
         $this->art = new NLArticle($title, $body, $append);
     }
 
     // }}}
     // {{{ function formu()
 
-    function formu()
+    public function formu()
     {
         return 'include/form.valid.nl.tpl';
     }
@@ -49,7 +50,7 @@ class NLReq extends Validate
     // }}}
     // {{{ function editor()
 
-    function editor()
+    public function editor()
     {
         return 'include/form.valid.edit-nl.tpl';
     }
@@ -57,7 +58,7 @@ class NLReq extends Validate
     // }}}
     // {{{ function handle_editor()
 
-    function handle_editor()
+    protected function handle_editor()
     {
         $this->art->_body   = Env::v('nl_body');
         $this->art->_title  = Env::v('nl_title');
@@ -67,8 +68,8 @@ class NLReq extends Validate
 
     // }}}
     // {{{ function _mail_subj
-    
-    function _mail_subj()
+
+    protected function _mail_subj()
     {
         return "[Polytechnique.org/NL] Proposition d'article dans la NL";
     }
@@ -76,19 +77,19 @@ class NLReq extends Validate
     // }}}
     // {{{ function _mail_body
 
-    function _mail_body($isok)
+    protected function _mail_body($isok)
     {
         if ($isok) {
-            return '  L\'article que tu avais proposé ('.$this->art->title().') vient d\'être validé.';
+            return '  L\'article que tu avais proposé ('.$this->art->title().') vient d\'être validé.';
         } else {
-            return '  L\'article que tu avais proposé ('.$this->art->title().') a été refusé.';
+            return '  L\'article que tu avais proposé ('.$this->art->title().') a été refusé.';
         }
     }
 
     // }}}
     // {{{ function commit()
 
-    function commit()
+    public function commit()
     {
         $nl  = new Newsletter();
         $nl->saveArticle($this->art);
@@ -100,5 +101,5 @@ class NLReq extends Validate
 
 // }}}
 
-// 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:
 ?>