Add minimalist page layout and processing object
[platal.git] / classes / plwizard.php
CommitLineData
2a54eb4d 1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2007 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 **************************************************************************/
21
22/** A Wizard Page is a page of a wizard. It is a self-contained step which
23 * handles both the creation and initialisation of the step (by using the
24 * Wizard global state, if needed) and the processing of the action the
25 * user made on it.
26 */
27interface PlWizardPage
28{
29 /** Build a new instance of the class
30 * associated with the given wizard master.
31 */
32 public function __construct(PlWizard &$wiz);
33
34 /** Return the name of the templace describing the page.
35 */
36 public function template();
37
38 /** Prepare the page by assigning to it any useful value.
39 */
40 public function prepare(PlatalPage &$page);
41
42 /** Process information resulting of the application of the page.
43 * This function must return a clue indicating the next page to show.
44 * This clue can be either a page id, a page number or a navigation
45 * id (PlWizard::FIRST_PAGE, PlWizard::NEXT_PAGE, PlWizard::CURRENT_PAGE
46 * PlWizard::PREVIOUS_PAGE, PlWizard::LAST_PAGE).
47 */
48 public function process();
49}
50
51/** A PlWizard is a set of pages through which the user can navigate,
52 * his action on a page determining which the next one will be.
53 *
54 * A Wizard can either a stateless wizard (which is only a set of
55 * independent pages through which the user can easily navigate) or
56 * stateful (a suite of steps where each step gives clue for the next
57 * one).
58 */
59class PlWizard
60{
8fc4efa3 61 const FIRST_PAGE = 'bt_first';
62 const NEXT_PAGE = 'bt_next';
63 const CURRENT_PAGE = 'bt_current';
64 const PREVIOUS_PAGE = 'bt_previous';
65 const LAST_PAGE = 'bt_last';
2a54eb4d 66
67 protected $name;
68 protected $layout;
69 protected $stateless;
70
71 protected $pages;
e1635d16 72 protected $titles;
2a54eb4d 73 protected $lookup;
74
75 public function __construct($name, $layout, $stateless = false)
76 {
e1635d16
FB
77 $this->name = 'wiz_' . $name;
78 $this->layout = $layout;
2a54eb4d 79 $this->stateless = $stateless;
80 $this->pages = array();
81 $this->lookup = array();
e1635d16 82 $this->titles = array();
2a54eb4d 83 if (!isset($_SESSION[$this->name])) {
84 $_SESSION[$this->name] = array();
85 }
e1635d16
FB
86 $_SESSION[$this->name . '_page'] = null;
87 $_SESSION[$this->name . '_stack'] = array();
2a54eb4d 88 }
89
e1635d16 90 public function addPage($class, $title,$id = null)
2a54eb4d 91 {
92 if ($id != null) {
93 $this->lookup[$id] = count($this->pages);
94 }
e1635d16
FB
95 $this->pages[] = $class;
96 $this->titles[] = $title;
2a54eb4d 97 }
98
99 public function set($varname, $value)
100 {
101 $_SESSION[$this->name][$varname] = $value;
102 }
103
104 public function get($varname, $default = null)
105 {
106 return isset($_SESSION[$this->name][$varname]) ?
107 $_SESSION[$this->name][$varname] : $default;
108 }
109
110 public function v($varname, $default = "")
111 {
112 return $this->get($varname, $default);
113 }
114
115 public function i($varname, $default = 0)
116 {
117 return (int)$this->get($varname, $default);
118 }
119
120 public function clear($varname = null)
121 {
122 if (is_null($varname)) {
123 $_SESSION[$this->name] = array();
124 } else {
125 unset($_SESSION[$this->name][$varname]);
126 }
127 $_SESSION[$this->name . '_page'] = null;
128 }
129
e1635d16 130 private function getPage($id)
2a54eb4d 131 {
132 $page = $this->pages[$id];
133 return new $page($this);
134 }
135
8fc4efa3 136 public function apply(PlatalPage &$smarty, $baseurl, $pgid = null)
2a54eb4d 137 {
138 $curpage =& $_SESSION[$this->name . '_page'];
139
140 // Process the previous page
141 if (!is_null($curpage)) {
142 $page = $this->getPage($curpage);
143 $next = $page->process();
e1635d16 144 $last = $curpage;
2a54eb4d 145 switch ($next) {
146 case PlWizard::FIRST_PAGE:
147 $curpage = 0;
148 break;
149 case PlWizard::PREVIOUS_PAGE:
e1635d16
FB
150 if (!$this->stateless && count($_SESSION[$this->name . '_stack'])) {
151 $curpage = array_pop($_SESSION[$this->name . '_stack']);
152 } elseif ($curpage && $this->stateless) {
153 $curpage--;
154 } else {
155 $curpage = 0;
156 }
2a54eb4d 157 break;
158 case PlWizard::NEXT_PAGE:
e1635d16
FB
159 if ($curpage < count($this->pages) - 1) {
160 $curpage++;
161 }
2a54eb4d 162 break;
163 case PlWizard::LAST_PAGE:
164 $curpage = count($this->pages) - 1;
165 break;
166 case PlWizard::CURRENT_PAGE: break; // don't change the page
167 default:
168 $curpage = is_numeric($next) ? $next : $this->lookup[$curpage];
169 break;
170 }
e1635d16
FB
171 if (!$this->stateless) {
172 array_push($_SESSION[$this->name . '_stack'], $last);
173 }
2a54eb4d 174 }
8fc4efa3 175 if ($this->stateless && (in_array($pgid, $this->lookup) || isset($this->pages[$pgid]))) {
176 $curpage = $pgid;
177 }
e1635d16
FB
178 if (is_null($curpage)) {
179 $curpage = 0;
180 }
2a54eb4d 181
182 // Prepare the page
183 $page = $this->getPage($curpage);
e1635d16
FB
184 $smarty->changeTpl($this->layout);
185 $smarty->assign('pages', $this->titles);
186 $smarty->assign('current', $curpage);
187 $smarty->assign('stateless', $this->stateless);
188 $smarty->assign('wiz_baseurl', $baseurl);
189 $smarty->assign('tab_width', (int)(99 / count($this->pages)));
2a54eb4d 190 $smarty->assign('wiz_page', $page->template());
191 $page->prepare($smarty);
192 }
193}
194
195// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
196?>