forked from sonata-project/SonataAdminBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBaseFieldDescription.php
498 lines (431 loc) · 10.9 KB
/
BaseFieldDescription.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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
<?php
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\AdminBundle\Admin;
use Sonata\AdminBundle\Exception\NoValueException;
use Symfony\Component\DependencyInjection\Container;
/**
* A FieldDescription hold the information about a field. A typical
* admin instance contains different collections of fields.
*
* - form: used by the form
* - list: used by the list
* - filter: used by the list filter
*
* Some options are global across the different contexts, other are
* context specifics.
*
* Global options :
* - type (m): define the field type (use to tweak the form or the list)
* - template (o) : the template used to render the field
* - name (o) : the name used (label in the form, title in the list)
* - link_parameters (o) : add link parameter to the related Admin class when
* the Admin.generateUrl is called
* - code : the method name to retrieve the related value
* - associated_tostring : (deprecated, use associated_property option)
* the method to retrieve the "string" representation
* of the collection element.
* - associated_property : property path to retrieve the "string" representation
* of the collection element.
*
* Form Field options :
* - field_type (o): the widget class to use to render the field
* - field_options (o): the options to give to the widget
* - edit (o) : list|inline|standard (only used for associated admin)
* - list : open a popup where the user can search, filter and click on one field
* to select one item
* - inline : the associated form admin is embedded into the current form
* - standard : the associated admin is created through a popup
*
* List Field options :
* - identifier (o): if set to true a link appear on to edit the element
*
* Filter Field options :
* - options (o): options given to the Filter object
* - field_type (o): the widget class to use to render the field
* - field_options (o): the options to give to the widget
*
* @author Thomas Rabaix <[email protected]>
*/
abstract class BaseFieldDescription implements FieldDescriptionInterface
{
/**
* @var string the field name
*/
protected $name;
/**
* @var string|int the type
*/
protected $type;
/**
* @var string|int the original mapping type
*/
protected $mappingType;
/**
* @var string the field name (of the form)
*/
protected $fieldName;
/**
* @var array the ORM association mapping
*/
protected $associationMapping;
/**
* @var array the ORM field information
*/
protected $fieldMapping;
/**
* @var array the ORM parent mapping association
*/
protected $parentAssociationMappings;
/**
* @var string the template name
*/
protected $template;
/**
* @var array the option collection
*/
protected $options = array();
/**
* @var AdminInterface|null the parent Admin instance
*/
protected $parent = null;
/**
* @var AdminInterface the related admin instance
*/
protected $admin;
/**
* @var AdminInterface the associated admin class if the object is associated to another entity
*/
protected $associationAdmin;
/**
* @var string the help message to display
*/
protected $help;
/**
* {@inheritdoc}
*/
public function setFieldName($fieldName)
{
$this->fieldName = $fieldName;
}
/**
* {@inheritdoc}
*/
public function getFieldName()
{
return $this->fieldName;
}
/**
* {@inheritdoc}
*/
public function setName($name)
{
$this->name = $name;
if (!$this->getFieldName()) {
$this->setFieldName(substr(strrchr('.'.$name, '.'), 1));
}
}
/**
* {@inheritdoc}
*/
public function getName()
{
return $this->name;
}
/**
* {@inheritdoc}
*/
public function getOption($name, $default = null)
{
return isset($this->options[$name]) ? $this->options[$name] : $default;
}
/**
* {@inheritdoc}
*/
public function setOption($name, $value)
{
$this->options[$name] = $value;
}
/**
* {@inheritdoc}
*/
public function setOptions(array $options)
{
// set the type if provided
if (isset($options['type'])) {
$this->setType($options['type']);
unset($options['type']);
}
// remove property value
if (isset($options['template'])) {
$this->setTemplate($options['template']);
unset($options['template']);
}
// set help if provided
if (isset($options['help'])) {
$this->setHelp($options['help']);
unset($options['help']);
}
// set default placeholder
if (!isset($options['placeholder'])) {
$options['placeholder'] = 'short_object_description_placeholder';
}
if (!isset($options['link_parameters'])) {
$options['link_parameters'] = array();
}
$this->options = $options;
}
/**
* {@inheritdoc}
*/
public function getOptions()
{
return $this->options;
}
/**
* {@inheritdoc}
*/
public function setTemplate($template)
{
$this->template = $template;
}
/**
* {@inheritdoc}
*/
public function getTemplate()
{
return $this->template;
}
/**
* {@inheritdoc}
*/
public function setType($type)
{
$this->type = $type;
}
/**
* {@inheritdoc}
*/
public function getType()
{
return $this->type;
}
/**
* {@inheritdoc}
*/
public function setParent(AdminInterface $parent)
{
$this->parent = $parent;
}
/**
* {@inheritdoc}
*/
public function getParent()
{
return $this->parent;
}
/**
* {@inheritdoc}
*/
public function getAssociationMapping()
{
return $this->associationMapping;
}
/**
* {@inheritdoc}
*/
public function getFieldMapping()
{
return $this->fieldMapping;
}
/**
* {@inheritdoc}
*/
public function getParentAssociationMappings()
{
return $this->parentAssociationMappings;
}
/**
* {@inheritdoc}
*/
public function setAssociationAdmin(AdminInterface $associationAdmin)
{
$this->associationAdmin = $associationAdmin;
$this->associationAdmin->setParentFieldDescription($this);
}
/**
* {@inheritdoc}
*/
public function getAssociationAdmin()
{
return $this->associationAdmin;
}
/**
* {@inheritdoc}
*/
public function hasAssociationAdmin()
{
return $this->associationAdmin !== null;
}
/**
* {@inheritdoc}
*/
public function getFieldValue($object, $fieldName)
{
if ($this->isVirtual()) {
return;
}
$camelizedFieldName = self::camelize($fieldName);
$getters = array();
$parameters = array();
// prefer method name given in the code option
if ($this->getOption('code')) {
$getters[] = $this->getOption('code');
}
// parameters for the method given in the code option
if ($this->getOption('parameters')) {
$parameters = $this->getOption('parameters');
}
$getters[] = 'get'.$camelizedFieldName;
$getters[] = 'is'.$camelizedFieldName;
foreach ($getters as $getter) {
if (method_exists($object, $getter)) {
return call_user_func_array(array($object, $getter), $parameters);
}
}
if (method_exists($object, '__call')) {
return call_user_func_array(array($object, '__call'), array($fieldName, $parameters));
}
if (isset($object->{$fieldName})) {
return $object->{$fieldName};
}
throw new NoValueException(sprintf('Unable to retrieve the value of `%s`', $this->getName()));
}
/**
* {@inheritdoc}
*/
public function setAdmin(AdminInterface $admin)
{
$this->admin = $admin;
}
/**
* {@inheritdoc}
*/
public function getAdmin()
{
return $this->admin;
}
/**
* {@inheritdoc}
*/
public function mergeOption($name, array $options = array())
{
if (!isset($this->options[$name])) {
$this->options[$name] = array();
}
if (!is_array($this->options[$name])) {
throw new \RuntimeException(sprintf('The key `%s` does not point to an array value', $name));
}
$this->options[$name] = array_merge($this->options[$name], $options);
}
/**
* {@inheritdoc}
*/
public function mergeOptions(array $options = array())
{
$this->setOptions(array_merge_recursive($this->options, $options));
}
/**
* {@inheritdoc}
*/
public function setMappingType($mappingType)
{
$this->mappingType = $mappingType;
}
/**
* {@inheritdoc}
*/
public function getMappingType()
{
return $this->mappingType;
}
/**
* Camelize a string.
*
* @static
*
* @param string $property
*
* @return string
*/
public static function camelize($property)
{
return Container::camelize($property);
}
/**
* Defines the help message.
*
* @param string $help
*/
public function setHelp($help)
{
$this->help = $help;
}
/**
* {@inheritdoc}
*/
public function getHelp()
{
return $this->help;
}
/**
* {@inheritdoc}
*/
public function getLabel()
{
return $this->getOption('label');
}
/**
* {@inheritdoc}
*/
public function isSortable()
{
return false !== $this->getOption('sortable', false);
}
/**
* {@inheritdoc}
*/
public function getSortFieldMapping()
{
return $this->getOption('sort_field_mapping');
}
/**
* {@inheritdoc}
*/
public function getSortParentAssociationMapping()
{
return $this->getOption('sort_parent_association_mappings');
}
/**
* {@inheritdoc}
*/
public function getTranslationDomain()
{
return $this->getOption('translation_domain') ?: $this->getAdmin()->getTranslationDomain();
}
/**
* Return true if field is virtual.
*
* @return bool
*/
public function isVirtual()
{
return false !== $this->getOption('virtual_field', false);
}
}