-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAmslib_Form_Profile.php
231 lines (194 loc) · 5.25 KB
/
Amslib_Form_Profile.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<?php
/*******************************************************************************
* Copyright (c) {15/03/2008} {Christopher Thomas}
* This library 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 3 of the License, or any later version.
*
* This library 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 this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* Contributors/Author:
* {Christopher Thomas} - Creator - [email protected]
*
*******************************************************************************/
/**
* class: Amslib_Form_Profile
*
* group: core
*
* file: Amslib_Form_Profile.php
*
* description: todo write description
*
* todo: write documentation
*
*/
class Amslib_Form_Profile
{
const SUCCESS = "form/success";
const FAILURE = "form/failure";
const AJAX = "form/ajax";
const KEY = "amslib/form_profile";
// Here we cache all the profiles so they are only called once
static protected $profiles = false;
// Here we cache all the data associated with a profile
static protected $data = array();
// Here we can delegate how a profile is stored to another function/method who can create it on the fly
static protected $delegate = false;
/**
* method: initialise
*
* todo: write documentation
*/
static public function initialise()
{
if(!isset($_SESSION[self::KEY])) $_SESSION[self::KEY] = array();
self::$profiles = &$_SESSION[self::KEY];
}
/**
* method: setDelegate
*
* todo: write documentation
*/
static public function setDelegate($method,$object=NULL)
{
if($object && $method && method_exists($object,$method)){
self::$delegate = array($object,$method);
}else if($method && function_exists($method)){
self::$delegate = $method;
}
}
// Assign a new profile
/**
* method: setProfile
*
* todo: write documentation
*/
static public function setProfile($name,$data)
{
if(!is_string($name)) return false;
self::$profiles[$name] = $data;
self::resetProfile($name);
return true;
}
// Get a profile from the cache or the delegate
/**
* method: getProfile
*
* todo: write documentation
*/
static public function getProfile($name)
{
if(!is_string($name)) return array();
if(isset(self::$profiles[$name])) return self::$profiles[$name];
$profile = (self::$delegate) ? call_user_func(self::$delegate,$name) : array();
if(!empty($profile)) self::set($name,$profile);
return $profile;
}
// Delete a profile
/**
* method: deleteProfile
*
* todo: write documentation
*/
static public function deleteProfile($name)
{
if(!is_string($name)) return;
unset(self::$profiles[$name]);
}
/**
* method: resetProfile
*
* todo: write documentation
*/
static public function resetProfile($name)
{
if(!is_string($name)) return;
$d = self::$profiles[$name]["data"];
self::$profiles[$name]["data"] = array();
return $d;
}
/**
* method: getSuccessURL
*
* todo: write documentation
*/
static public function getSuccessURL($name,$default="")
{
if(!is_string($name)) return;
return isset(self::$profiles[$name][self::SUCCESS])
? self::$profiles[$name][self::SUCCESS]
: $default;
}
/**
* method: getFailureURL
*
* todo: write documentation
*/
static public function getFailureURL($name,$default="")
{
if(!is_string($name)) return;
return isset(self::$profiles[$name][self::FAILURE])
? self::$profiles[$name][self::FAILURE]
: $default;
}
/**
* method: getAjaxState
*
* todo: write documentation
*/
static public function getAjaxState($name)
{
return is_string($name) && isset(self::$profiles[$name][self::AJAX])
? self::$profiles[$name][self::AJAX] ? true : false
: false;
}
// Store a piece of data inside the profile, ready to pickup the next time
/**
* method: setData
*
* todo: write documentation
*/
static public function setData($name,$key,$value)
{
if(is_string($name) && isset(self::$profiles[$name])){
self::$profiles[$name]["data"][$key] = $vale;
}
}
/**
* method: getData
*
* todo: write documentation
*/
static public function getData($name)
{
if(!is_string($name)) return array();
if(isset(self::$data[$name])) return self::$data[$name];
if(!isset(self::$profiles[$name])) return array();
self::$data[$name] = self::resetProfile($name);
return self::$data[$name];
}
// Retrieve a piece of data that was stored inside the profile
/**
* method: getDataElement
*
* todo: write documentation
*/
static public function getDataElement($name,$key,$default=false)
{
if(is_string($name) && isset(self::$profiles[$name][$key])){
return self::$profiles[$name]["data"][$key];
}
return $default;
}
}
// Initialise and setup the object with it's basic data
Amslib_Form_Profile::initialise();