JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
UNTESTED: added session_messages.php (saves/restores message()s over redirects)
[wfpl.git] / session_messages.php
diff --git a/session_messages.php b/session_messages.php
new file mode 100644 (file)
index 0000000..358994c
--- /dev/null
@@ -0,0 +1,56 @@
+<?php
+
+#  Copyright (C) 2007 Jason Woofenden
+#
+#  This file is part of wfpl.
+#
+#  wfpl is free software; you can redistribute it and/or modify it under the
+#  terms of the GNU Lesser General Public License as published by the Free
+#  Software Foundation; either version 2.1 of the License, or (at your option)
+#  any later version.
+#
+#  wfpl is distributed in the hope that it will be useful, but WITHOUT ANY
+#  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+#  FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for
+#  more details.
+#
+#  You should have received a copy of the GNU Lesser General Public License
+#  along with wfpl; if not, write to the Free Software Foundation, Inc., 51
+#  Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+
+
+# require_once() this file instead of messages.php if you'd like to store
+# save/restore messages in the session accross redirect()s. That's all you have
+# to do. These functions are called when needed (from redirect() and
+# display_messages()) if they are defined.
+
+# see messages.php for documentation on how to use it.
+
+require_once('code/wfpl/session.php');
+require_once('code/wfpl/string_array.php');
+require_once('code/wfpl/messages.php');
+
+function session_save_messages() {
+       if(!isset($GLOBALS['wfpl_messages'])) {
+               return;
+       }
+       if(!is_array($GLOBALS['wfpl_messages'])) {
+               return;
+       }
+
+       init_session();
+       session_set('wfpl_messages', array_to_string($GLOBALS['wfpl_messages']);
+}
+
+function session_restore_messages() {
+       if(!session()) {
+               return false;
+       }
+       $messages = session_get('wfpl_messages');
+       if($messages !== false) {
+               $messages = string_to_array($messages);
+               # messages from the previous run happened first
+               $GLOBALS['wfpl_messages'] = array_merge($messages, $GLOBALS['wfpl_messages']);
+       }
+       session_clear('wfpl_messages');
+}