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
314
315
316
317
318
319
|
<?php defined("SYSPATH") or die("No direct script access.");
/**
* FORGE (FORm GEneration) library.
*
* $Id$
*
* @package Forge
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
*/
class Forge_Core {
// Template variables
protected $template = array
(
'title' => '',
'class' => '',
'open' => '',
'close' => '',
);
// Form attributes
protected $attr = array();
// Form inputs and hidden inputs
public $inputs = array();
public $hidden = array();
// Error message format, only used with custom templates
public $error_format = '<p class="error">{message}</p>';
public $newline_char = "\n";
/**
* Form constructor. Sets the form action, title, method, and attributes.
*
* @return void
*/
public function __construct($action = NULL, $title = '', $method = NULL, $attr = array())
{
// Set form attributes
$this->attr['action'] = $action;
$this->attr['method'] = empty($method) ? 'post' : $method;
// Set template variables
$this->template['title'] = $title;
// Empty attributes sets the class to "form"
empty($attr) and $attr = array('class' => 'form');
// String attributes is the class name
is_string($attr) and $attr = array('class' => $attr);
// Extend the template with the attributes
$this->attr += $attr;
}
/**
* Magic __get method. Returns the specified form element.
*
* @param string unique input name
* @return object
*/
public function __get($key)
{
if (isset($this->inputs[$key]))
{
return $this->inputs[$key];
}
elseif (isset($this->hidden[$key]))
{
return $this->hidden[$key];
}
}
/**
* Magic __call method. Creates a new form element object.
*
* @throws Kohana_Exception
* @param string input type
* @param string input name
* @return object
*/
public function __call($method, $args)
{
// Class name
$input = 'Form_'.ucfirst($method);
// Create the input
switch (count($args))
{
case 1:
$input = new $input($args[0]);
break;
case 2:
$input = new $input($args[0], $args[1]);
break;
default:
throw new Kohana_Exception('forge.invalid_input', $input);
}
if ( ! ($input instanceof Form_Input) AND ! ($input instanceof Forge))
throw new Kohana_Exception('forge.unknown_input', get_class($input));
$input->method = $this->attr['method'];
if ($name = $input->name)
{
// Assign by name
if ($method == 'hidden')
{
$this->hidden[$name] = $input;
}
else
{
$this->inputs[$name] = $input;
}
}
else
{
// No name, these are unretrievable
$this->inputs[] = $input;
}
return $input;
}
/**
* Set a form attribute. This method is chainable.
*
* @param string|array attribute name, or an array of attributes
* @param string attribute value
* @return object
*/
public function set_attr($key, $val = NULL)
{
if (is_array($key))
{
// Merge the new attributes with the old ones
$this->attr = array_merge($this->attr, $key);
}
else
{
// Set the new attribute
$this->attr[$key] = $val;
}
return $this;
}
/**
* Validates the form by running each inputs validation rules.
*
* @return bool
*/
public function validate()
{
$status = TRUE;
$inputs = array_merge($this->hidden, $this->inputs);
foreach ($inputs as $input)
{
if ($input->validate() == FALSE)
{
$status = FALSE;
}
}
return $status;
}
/**
* Returns the form as an array of input names and values.
*
* @return array
*/
public function as_array()
{
$data = array();
foreach (array_merge($this->hidden, $this->inputs) as $input)
{
if (is_object($input->name)) // It's a Forge_Group object (hopefully)
{
foreach ($input->inputs as $group_input)
{
if ($name = $group_input->name)
{
$data[$name] = $group_input->value;
}
}
}
else if (is_array($input->inputs))
{
foreach ($input->inputs as $group_input)
{
if ($name = $group_input->name)
{
$data[$name] = $group_input->value;
}
}
}
else if ($name = $input->name) // It's a normal input
{
// Return only named inputs
$data[$name] = $input->value;
}
}
return $data;
}
/**
* Changes the error message format. Your message formatting must
* contain a {message} placeholder.
*
* @throws Kohana_Exception
* @param string new message format
* @return void
*/
public function error_format($string = '')
{
if (strpos((string) $string, '{message}') === FALSE)
throw new Kohana_Exception('validation.error_format');
$this->error_format = $string;
}
/**
* Creates the form HTML
*
* @param string form view template name
* @param boolean use a custom view
* @return string
*/
public function render($template = 'forge_template', $custom = FALSE)
{
// Load template
$form = new View($template);
if ($custom)
{
// Using a custom view
$data = array();
foreach (array_merge($this->hidden, $this->inputs) as $input)
{
$data[$input->name] = $input;
// Groups will never have errors, so skip them
if ($input instanceof Form_Group)
continue;
// Compile the error messages for this input
$messages = '';
$errors = $input->error_messages();
if (is_array($errors) AND ! empty($errors))
{
foreach ($errors as $error)
{
// Replace the message with the error in the html error string
$messages .= str_replace('{message}', $error, $this->error_format).$this->newline_char;
}
}
$data[$input->name.'_errors'] = $messages;
}
$form->set($data);
}
else
{
// Using a template view
$form->set($this->template);
$hidden = array();
if ( ! empty($this->hidden))
{
foreach ($this->hidden as $input)
{
$hidden[$input->name] = $input->value;
}
}
$form_type = 'open';
// See if we need a multipart form
$check_inputs = array($this->inputs);
while ($check_inputs) {
foreach (array_shift($check_inputs) as $input) {
if ($input instanceof Form_Upload)
{
$form_type = 'open_multipart';
}
if ($input instanceof Form_Group)
{
$check_inputs += array($input->inputs);
}
}
}
// Set the form open and close
$form->open = form::$form_type(arr::remove('action', $this->attr), $this->attr, $hidden);
$form->close = form::close();
// Set the inputs
$form->inputs = $this->inputs;
}
return $form;
}
/**
* Returns the form HTML
*/
public function __toString()
{
return (string) $this->render();
}
} // End Forge
|