This repository has been archived by the owner on Feb 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
form.php
421 lines (356 loc) · 7.93 KB
/
form.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
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
<?php namespace Squi;
class Form extends HTML_Element {
// Bundled layouts
public static $layouts = array(
'basic',
'table',
'bootstrap',
);
// The View used to render the form
public $layout = 'table';
// Array of Form_Field objects
public $fields;
// The object or array from which to get field values
public $values;
// Form Buttons
// Can be just the string value, array descriptor, or HTML_Element instance
// Default buttons 'Cancel' and 'Submit' are added
// unless populated or set to false.
public $buttons = array();
// Arbitrary content to prepend or append to the form
public $before, $after;
// Optional <legend/> contents
public $legend;
// Default attributes
public $attr = array(
'method' => 'post',
);
// Laravel\Messages or array containing errors
public $errors;
// Boolean flag for whether to render fields in a <fieldset />
public $fieldset;
public function __construct($fields = null)
{
is_array($fields) && $this->fields($fields);
is_callable($fields) && call_user_func($fields, $this);
}
public static function make($fields = null)
{
return new static($fields);
}
/**
* Add a field using one of many syntaxes
* Returns reference to the field
*/
public function field($label, $callback = null)
{
if (is_a($callback, 'Squi\\Form_Field'))
{
$field = $callback;
}
elseif (is_a($label, 'Squi\\Form_Field'))
{
$field = $label;
}
else
{
$field = Form_Field::make();
}
$field->form = $this;
// field('field_name')
if (is_null($callback) && is_string($label))
{
$field->name = $label;
// Automagic label by capitalization
$field->label($label, $humanize = true);
}
// field(function($field){})
elseif (is_null($callback) && is_callable($label))
{
call_user_func($label, $field, $this);
}
// field(array('name' => 'field_name'))
elseif (is_null($callback) && is_array($label))
{
if (isset($label[0]) && isset($label[1]))
{
$field = $label[1];
$field->label($label[0]);
}
else
{
$field->parse_config($label);
}
}
// field('Label', array('name' => 'field_name'))
// field('Label', array(Form_Field, Form_Field))
elseif (is_string($label) && is_array($callback))
{
$field->label($label);
// The array could either be an array of Table_Fields
// or an assoc array defining a field
if (is_a(reset($callback), 'Squi\\Form_Field'))
{
$field->fields = $callback;
}
else
{
$field->parse_config($callback);
}
}
// field(Form_Label)
elseif (is_a($label, 'Squi\\Form_Label'))
{
$field->label($label);
}
// field('Label', 'field_name')
elseif (is_string($label) && is_string($callback))
{
$field->label($label);
$field->name = $callback;
}
$this->fields[] = $field;
return $field;
}
/**
* Add fields using array syntax
*/
public function fields($fields)
{
foreach ($fields as $key => $value)
{
$args = is_int($key) ? array($value) : array($key, $value);
call_user_func_array(array($this, 'field'), $args);
}
return $this;
}
/**
* Specify the markup layout to use
* This can be a View object or one of basic, table or bootstrap
*/
public function layout($layout)
{
if (is_a($layout, 'View'))
{
$this->layout = $layout;
}
elseif (in_array($layout, static::$layouts))
{
$this->layout = \View::make('squi::form.'.$layout);
}
else
{
$this->layout = \View::make($layout);
}
return $this;
}
/**
* Set the object or array from which to get field values
* @return Form instance
*/
public function values($values)
{
$this->values = $values;
return $this;
}
/**
* Set the form buttons
* @return Form instance
*/
public function buttons($buttons)
{
$this->buttons = $buttons;
return $this;
}
/**
* Set the legend
* @return Form instance
*/
public function legend($legend)
{
$this->legend = $legend;
return $this;
}
/**
* Set errors
* @return Form instance
*/
public function errors($errors)
{
$this->errors = $errors;
return $this;
}
/**
* Get first error for a field
* @return string|null
*/
public function error($field, $format = null)
{
if (is_a($field, 'Squi\\Form_Field'))
{
$field = $field->name;
}
if ( ! isset($this->errors))
{
return null;
}
if (is_a($this->errors, 'Laravel\\Messages') && $this->errors->has($field))
{
return $this->errors->first($field, $format);
}
elseif (is_array($this->errors) && isset($this->errors[$field]))
{
return $this->errors[$field];
}
return null;
}
/**
* Find a field by its name
*/
public function find($name)
{
foreach ($this->fields as $field)
{
if ($field->name == $name) return $field;
if ($field->fields)
{
foreach ($field->fields as $field)
{
if ($field->name == $name) return $field;
}
}
}
return null;
}
/**
* Create a form using the configuration provided by a model
*/
public static function of($model, $method = 'configure_form')
{
$form = new static;
if (is_object($model))
{
$form->values = $model;
$model = get_class($model);
}
call_user_func($model.'::'.$method, $form);
return $form;
}
/**
* Assign values to each field
* Values are taken either from the passed variable
* or the values assigned via ->values()
*/
public function assign_values($values = null)
{
is_null($values) || $this->values($values);
foreach ($this->fields as $field)
{
// Add value from the model instance
$field->extract_value($this->values);
}
}
/**
* Render the form as HTML
*/
public function render()
{
// Create the view
$this->layout($this->layout);
// Separate hidden and displayed fields
$fields = array();
$hidden = array();
// Are we using a twitter bootstrap layout?
$bootstrap = strrpos($this->layout->view, 'bootstrap') !== false;
// This is an extra iteration of the fields, but oh well
$this->assign_values();
foreach ($this->fields as $field)
{
// Add bootstrap classes if appropriate
if ($bootstrap && $field->label)
{
$field->label->add_class('control-label');
}
// Is it hidden?
// @todo: this prevents hidden fields from being
// usable inside multi-field, but I think that's okay
if ($field->is_hidden())
{
$hidden[] = $field;
}
else
{
if ( ! isset($field->label))
{
$field->label(ucwords(str_replace('_', ' ', $field->name)));
// Retroactively apply required class to label
if ($field->is_required())
{
$field->label->add_class('required');
}
}
$fields[] = $field;
}
}
// Make the buttons
$buttons = array();
if ( ! is_array($this->buttons))
{
$this->buttons = array();
}
elseif ( ! count($this->buttons))
{
$this->buttons = array(
Form_Button::make('Cancel')->attr('type', 'button')->attr('class', 'btn'),
Form_Button::make('Submit')->attr('type', 'submit')->attr('class', 'btn btn-primary'),
);
}
foreach ($this->buttons as $key => $val)
{
if (is_int($key) && is_array($val))
{
$buttons[] = Form_Button::make()->parse_config($val);
}
elseif (is_int($key) && is_a($val, 'Squi\\Form_Button'))
{
$buttons[] = $val;
}
elseif (is_int($key))
{
$buttons[] = Form_Button::make($val)->attr('class', 'btn');
}
elseif (is_string($key) && is_array($val))
{
$buttons[] = Form_Button::make($key)->parse_config($val);
}
elseif (is_string($key) && is_string($val))
{
$buttons[] = Form_Button::make($key)->attr('name', $val)->attr('class', 'btn');
}
}
return $this->layout
->with('form', $this)
->with('fields', $fields)
->with('hidden', $hidden)
->with('buttons', $buttons)
->render();
}
/**
* Render the form as a string
*/
public function __toString()
{
try
{
return $this->render();
}
catch (\Exception $e)
{
die($e->getMessage());
}
}
public function __call($method, $args)
{
return call_user_func_array(array($this, 'field'), $args)->type($method);
}
}