X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=classes%2Fplatalpage.php;h=f3bb2fa760d3225c9af81d673484f937d4bce242;hb=06df222b7962dd5b71b34ec1dd078276d7327dbc;hp=f3661d72c8ad0f59323084e92b0c496de8f37a6c;hpb=756ff73fbb0cdd01cce2eda27ba18e1cc99bd735;p=platal.git diff --git a/classes/platalpage.php b/classes/platalpage.php index f3661d7..f3bb2fa 100644 --- a/classes/platalpage.php +++ b/classes/platalpage.php @@ -48,16 +48,17 @@ abstract class PlatalPage extends Smarty $this->compile_check = !empty($globals->debug); $this->changeTpl($tpl, $type); - $this->_errors = array(); + $this->_errors = array('errors' => array()); $this->_jsonVars = array(); $this->_failure = false; if ($globals->mode != 'rw') { - $this->_errors[] = "En raison d'une maintenance, une partie des fonctionnalités du site sont actuellement" - . " désactivée, en particuliers aucune donnée ne sera sauvegardée"; + $this->trigError("En raison d'une maintenance, une partie des fonctionnalités du site sont" + . " actuellement désactivée, en particuliers aucune donnée ne sera sauvegardée"); } $this->register_prefilter('at_to_globals'); $this->addJsLink('xorg.js'); + $this->addJsLink('jquery.js'); } // }}} @@ -93,7 +94,8 @@ abstract class PlatalPage extends Smarty $this->register_prefilter('form_force_encodings'); $this->register_prefilter('wiki_include'); $this->register_prefilter('if_has_perms'); - $this->assign('xorg_errors', $this->_errors); + $this->assign('xorg_triggers', $this->_errors); + $this->assign('xorg_errors', $this->nb_errs()); $this->assign('xorg_failure', $this->_failure); $this->assign('globals', $globals); @@ -186,15 +188,33 @@ abstract class PlatalPage extends Smarty public function nb_errs() { - return count($this->_errors); + return count($this->_errors['errors']); } // }}} // {{{ function trig() - public function trig($msg) + private function trig($msg, $type = 'errors') { - $this->_errors[] = $msg; + if (!isset($this->_errors[$type])) { + $this->_errors[$type] = array(); + } + $this->_errors[$type][] = $msg; + } + + public function trigError($msg) + { + $this->trig($msg, 'errors'); + } + + public function trigWarning($msg) + { + $this->trig($msg, 'warnings'); + } + + public function trigSuccess($msg) + { + $this->trig($msg, 'success'); } // }}} @@ -205,7 +225,7 @@ abstract class PlatalPage extends Smarty global $platal; $this->assign('platal', $platal); - $this->trig($msg); + $this->trigError($msg); $this->_failure = true; $this->run(); }