forked from nigelgbanks/objective_forms
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Form.inc
executable file
·313 lines (288 loc) · 7.75 KB
/
Form.inc
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
<?php
/**
* @file
* Defines a class that allows drupal forms to be built via objects instead of
* arrays. Note that is still possible to build non functional drupal forms
* using this class, the same rules apply that would normally apply to a Drupal
* API
* Form.
*/
module_load_include('inc', 'objective_forms', 'FormElement');
module_load_include('inc', 'objective_forms', 'FormStorage');
module_load_include('inc', 'objective_forms', 'FormElementRegistry');
module_load_include('inc', 'objective_forms', 'FormPopulator');
/**
* A Container for all the FormElements that comprise the form.
*/
class Form implements ArrayAccess {
/**
* Stores persistent data.
*
* @var FormStorage
*/
public $storage;
/**
* Registers every created/cloned FormElement.
*
* @var FormElementRegistry
*/
public $registry;
/**
* The root FormElement.
*
* @var array
*/
public $root;
/**
* Instantiate a Form.
*
* @param array $form
* The drupal form.
* @param array $form_state
* The drupal form state.
*/
public function __construct(array $form, array &$form_state, $parents = array()) {
$this->storage = new FormStorage($form_state);
$this->storage->elementRegistry = isset($this->storage->elementRegistry) ?
$this->storage->elementRegistry :
new FormElementRegistry();
$this->registry = $this->storage->elementRegistry;
$this->root = new FormElement($this->registry, $form, NULL, $parents);
}
/**
* Function ajaxAlter.
*
* Apply ajax alters to the form.
*
* @var FormElementRegistry
*/
public function ajaxAlter(array &$form, array &$form_state, array $triggering_element) {
if (isset($form_state['triggering_element']['#ajax']['params'])) {
if ($form['#hash'] == $form_state['triggering_element']['#ajax']['params']['target']) {
$element = $this->findElement($form['#hash']);
drupal_alter("form_element_{$element->type}_ajax", $element, $form, $form_state);
}
foreach (element_children($form) as $child) {
$this->ajaxAlter($form[$child], $form_state, $triggering_element);
}
}
}
/**
* Seaches the form for the given form element.
*
* @param hash $hash
* The unique #hash property that identifies the FormElement.
*
* @return FormElement
* The element
*/
public function findElement($hash) {
return $this->root->findElement($hash);
}
/**
* Function hasElement.
*
* Checks to see if the FormElement identified by its unique $hash exists in
* this form.
*
* @param hash $hash
* The unique #hash property that identifies the FormElement.
*
* @return bool
* TRUE if the FormElement exists within the form, FALSE otherwise.
*/
public function hasElement($hash) {
return $this->findElement($hash) != NULL;
}
/**
* Duplicates a FormElement identified by its unique $hash.
*
* @param hash $hash
* The unique #hash property that identifies the FormElement.
*
* @return FormElement
* The cloned element if found, NULL is otherwise.
*/
public function duplicate($hash) {
$element = $this->registry->get($hash);
if ($element) {
return clone $element;
}
return NULL;
}
/**
* Function duplicateOriginal.
*
* Duplicates a FormElement identified by its unique $hash from its original
* definition.
*
* @param hash $hash
* The unique #hash property that identifies the FormElement.
*
* @return FormElement
* The cloned element if the original was found, NULL is otherwise.
*/
public function duplicateOriginal($hash) {
$original = $this->registry->getOriginal($hash);
if ($original) {
return clone $original;
}
return NULL;
}
/**
* Remove the FormElement identified by its unique $hash from this form.
*
* @param hash $hash
* The unique #hash property that identifies the FormElement.
*
* @return FormElement
* The FormElement that was removed from this form if found, NULL otherwise.
*/
public function remove($hash) {
$element = $this->findElement($hash);
if (isset($element)) {
$element->orphan();
}
return $element;
}
/**
* Validates the form.
*
* @param array $form
* The form
* @param array $form_state
* The form state
*/
public function validate(array &$form, array &$form_state) {
// Implemented in child classes.
}
/**
* Submits the form.
*
* @param array $form
* The form
* @param array $form_state
* The form state
*/
public function submit(array &$form, array &$form_state) {
// Implemented in child classes.
}
/**
* Outputs the form as an array, which can be used by the Drupal Form API.
*
* @return array
* returns the form
*/
public function toArray(array &$form_state) {
$form = $this->root->toArray();
if (isset($form_state['values'])) {
// @todo see if its nesscary to store this varible with the instance.
module_load_include('inc', 'objective_forms', 'FormPopulator');
$populator = new FormPopulator(new FormValues($form_state, $form, $this->registry), $form_state);
$populator->populate($form);
if (isset($form_state['triggering_element']) && array_key_exists('#ajax', $form_state['triggering_element'])) {
$this->ajaxAlter($form, $form_state, $form_state['triggering_element']);
}
}
return $form;
}
/**
* Checks if a child element or property identified by $name exists.
*
* @param mixed $name
* The name
*
* @return bool
* TRUE if the child element or property exists FALSE otherwise.
*/
public function __isset($name) {
return isset($this->root->$name);
}
/**
* Removes a child element or property identified by $name.
*
* @param mixed $name
* The name
*/
public function __unset($name) {
unset($this->root->$name);
}
/**
* Gets a child element or property identified by $offset.
*
* @param mixed $name
* The name
*/
public function __get($name) {
return $this->root->$name;
}
/**
* Add/Set a child element or property identified by $offset, with $value.
*
* @param mixed $name
* The name
* @param mixed $value
* The value
*/
public function __set($name, $value) {
$this->root->$name = $value;
}
/**
* Checks if a child element or property identified by $offset exists.
*
* @param mixed $offset
* The offset
*
* @return bool
* TRUE if the child element or property exists FALSE otherwise.
*/
public function offsetExists($offset) {
return $this->root->offsetExists($offset);
}
/**
* Gets a child element or property identified by $offset.
*
* @param mixed $offset
* The offset
*
* @return mixed
* Gets a child element or property identified by $offset if it exists
* NULL otherwise.
*/
public function offsetGet($offset) {
return $this->root->offsetGet($offset);
}
/**
* Add/Set a child element or property identified by $offset, with $value.
*
* @param mixed $offset
* The offset
* @param mixed $value
* The value
*/
public function offsetSet($offset, $value) {
$this->root->offsetSet($offset, $value);
}
/**
* Removes a child element or property identified by $offset.
*
* @param mixed $offset
* The offset
*/
public function offsetUnset($offset) {
$this->root->offsetUnset($offset);
}
/**
* Creates a string repersentation of this object.
*
* @return string
* Returns the root
*/
// @codingStandardsIgnoreStart
// This function is invalid; only PHP magic methods should be prefixed with a
// double underscore
public function __toString() {
return (string) $this->root;
}
// @codingStandardsIgnoreEnd
}