-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathsfWidgetForm.class.php
335 lines (297 loc) · 9.22 KB
/
sfWidgetForm.class.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
<?php
/*
* This file is part of the symfony package.
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* sfWidgetForm is the base class for all form widgets.
*
* @author Fabien Potencier <[email protected]>
*/
abstract class sfWidgetForm extends sfWidget
{
protected $parent;
/**
* Constructor.
*
* Available options:
*
* * id_format: The format for the generated HTML id attributes (%s by default)
* * is_hidden: true if the form widget must be hidden, false otherwise (false by default)
* * needs_multipart: true if the form widget needs a multipart form, false otherwise (false by default)
* * default: The default value to use when rendering the widget
* * label: The label to use when the widget is rendered by a widget schema
*
* @param array $options An array of options
* @param array $attributes An array of default HTML attributes
*
* @see sfWidget
*/
public function __construct($options = [], $attributes = [])
{
$this->addOption('id_format', '%s');
$this->addOption('is_hidden', false);
$this->addOption('needs_multipart', false);
$this->addOption('default', null);
$this->addOption('label', null);
parent::__construct($options, $attributes);
}
/**
* Sets the default value for the widget.
*
* @param string $value The default value
*
* @return sfWidget The current widget instance
*/
public function setDefault($value)
{
$this->setOption('default', $value);
return $this;
}
/**
* Returns the default value for the widget.
*
* @return string The default value
*/
public function getDefault()
{
return $this->getOption('default');
}
/**
* Sets the label for the widget.
*
* @param string $value The label
*
* @return sfWidget The current widget instance
*/
public function setLabel($value)
{
$this->setOption('label', $value);
return $this;
}
/**
* Returns the label for the widget.
*
* @return string The label
*/
public function getLabel()
{
return $this->getOption('label');
}
/**
* Sets the format for HTML id attributes.
*
* @param string $format The format string (must contain a %s for the id placeholder)
*
* @return sfWidget The current widget instance
*/
public function setIdFormat($format)
{
$this->setOption('id_format', $format);
return $this;
}
/**
* Gets the HTML format string for id attributes.
*
* @return string The format string
*/
public function getIdFormat()
{
return $this->getOption('id_format');
}
/**
* Returns true if the widget is hidden.
*
* @return bool true if the widget is hidden, false otherwise
*/
public function isHidden()
{
return $this->getOption('is_hidden');
}
/**
* Sets the hidden flag for the widget.
*
* @param bool $boolean true if the widget must be hidden, false otherwise
*
* @return sfWidget The current widget instance
*/
public function setHidden($boolean)
{
$this->setOption('is_hidden', (bool) $boolean);
return $this;
}
/**
* Returns true if the widget needs a multipart form.
*
* @return bool true if the widget needs a multipart form, false otherwise
*/
public function needsMultipartForm()
{
return $this->getOption('needs_multipart');
}
/**
* Renders a HTML tag.
*
* The id attribute is added automatically to the array of attributes if none is specified.
* If uses for "id_format" option to generate the id.
*
* @param string $tag The tag name
* @param array $attributes An array of HTML attributes to be merged with the default HTML attributes
*
* @return string An HTML tag string
*/
public function renderTag($tag, $attributes = [])
{
if (empty($tag)) {
return '';
}
$attributes = $this->fixFormId($attributes);
return parent::renderTag($tag, $attributes);
}
/**
* Renders a HTML content tag.
*
* The id attribute is added automatically to the array of attributes if none is specified.
* If uses for "id_format" option to generate the id.
*
* @param string $tag The tag name
* @param string $content The content of the tag
* @param array $attributes An array of HTML attributes to be merged with the default HTML attributes
*
* @return string An HTML tag string
*/
public function renderContentTag($tag, $content = null, $attributes = [])
{
return parent::renderContentTag($tag, $content, $this->fixFormId($attributes));
}
/**
* Returns a formatted id based on the field name and optionally on the field value.
*
* This method determines the proper form field id name based on the parameters. If a form field has an
* array value as a name we need to convert them to proper and unique ids like so:
*
* <samp>
* name[] => name (if value == null)
* name[] => name_value (if value != null)
* name[bob] => name_bob
* name[item][total] => name_item_total
* </samp>
*
* This method also changes all invalid characters to an underscore (_):
*
* Ids must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits
* ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").
*
* @param string $name The field name
* @param string $value The field value
*
* @return string the field id or null
*/
public function generateId($name, $value = null)
{
if (false === $this->getOption('id_format')) {
return null;
}
// check to see if we have an array variable for a field name
if (false !== strpos($name, '[')) {
$name = str_replace(['[]', '][', '[', ']'], [null !== $value && !is_array($value) ? '_'.$value : '', '_', '_', ''], $name);
}
if (false !== strpos($this->getOption('id_format'), '%s')) {
$name = sprintf($this->getOption('id_format'), $name);
}
// remove illegal characters
return preg_replace(['/^[^A-Za-z]+/', '/[^A-Za-z0-9\:_\.\-]/'], ['', '_'], $name);
}
/**
* Sets the parent widget schema.
*
* @return sfWidgetForm The current widget instance
*/
public function setParent(?sfWidgetFormSchema $widgetSchema = null)
{
$this->parent = $widgetSchema;
return $this;
}
/**
* Returns the parent widget schema.
*
* If no schema has been set with setWidgetSchema(), NULL is returned.
*
* @return sfWidgetFormSchema|null
*/
public function getParent()
{
return $this->parent;
}
/**
* Adds an HTML id attributes to the array of attributes if none is given and a name attribute exists.
*
* @param array $attributes An array of attributes
*
* @return array an array of attributes with an id
*/
protected function fixFormId($attributes)
{
if (!isset($attributes['id']) && isset($attributes['name'])) {
$attributes['id'] = $this->generateId($attributes['name'], isset($attributes['value']) ? $attributes['value'] : null);
}
return $attributes;
}
/**
* Generates a two chars range.
*
* @param int $start
* @param int $stop
*
* @return array
*/
protected static function generateTwoCharsRange($start, $stop)
{
$results = [];
for ($i = $start; $i <= $stop; ++$i) {
$results[$i] = sprintf('%02d', $i);
}
return $results;
}
/**
* Translates the given text.
*
* @param string $text The text with optional placeholders
* @param array $parameters The values to replace the placeholders
*
* @return string The translated text
*
* @see sfWidgetFormSchemaFormatter::translate()
*/
protected function translate($text, array $parameters = [])
{
if (null === $this->parent) {
return $text;
}
return $this->parent->getFormFormatter()->translate($text, $parameters);
}
/**
* Translates all values of the given array.
*
* @param array $texts The texts with optional placeholders
* @param array $parameters The values to replace the placeholders
*
* @return array The translated texts
*
* @see sfWidgetFormSchemaFormatter::translate()
*/
protected function translateAll(array $texts, array $parameters = [])
{
if (null === $this->parent) {
return $texts;
}
$result = [];
foreach ($texts as $key => $text) {
$result[$key] = $this->parent->getFormFormatter()->translate($text, $parameters);
}
return $result;
}
}