features.field.inc
17.8 KB
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
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
<?php
/**
* Implements hook_features_api().
*/
function field_features_api() {
return array(
'field' => array(
// this is deprecated by field_base and field_instance
// but retained for compatibility with older exports
'name' => t('Fields'),
'default_hook' => 'field_default_fields',
'default_file' => FEATURES_DEFAULTS_INCLUDED,
'feature_source' => FALSE,
),
'field_base' => array(
'name' => t('Field Bases'),
'default_hook' => 'field_default_field_bases',
'default_file' => FEATURES_DEFAULTS_INCLUDED,
'feature_source' => TRUE,
'supersedes' => 'field',
),
'field_instance' => array(
'name' => t('Field Instances'),
'default_hook' => 'field_default_field_instances',
'default_file' => FEATURES_DEFAULTS_INCLUDED,
'feature_source' => TRUE,
'supersedes' => 'field',
)
);
}
/**
* Implements hook_features_export_options().
*/
function field_base_features_export_options() {
$options = array();
$fields = field_info_fields();
foreach ($fields as $field_name => $field) {
$options[$field_name] = $field_name;
}
return $options;
}
/**
* Implements hook_features_export_options().
*/
function field_instance_features_export_options() {
$options = array();
foreach (field_info_fields() as $field_name => $field) {
foreach ($field['bundles'] as $entity_type => $bundles) {
foreach ($bundles as $bundle) {
$identifier = "{$entity_type}-{$bundle}-{$field_name}";
$options[$identifier] = $identifier;
}
}
}
ksort($options);
return $options;
}
/**
* Implements hook_features_export().
*/
function field_base_features_export($data, &$export, $module_name = '') {
$pipe = array();
$map = features_get_default_map('field_base');
// The field_default_field_bases() hook integration is provided by the
// features module so we need to add it as a dependency.
$export['dependencies']['features'] = 'features';
foreach ($data as $identifier) {
if ($base = features_field_base_load($identifier)) {
// If this field is already provided by another module, remove the field
// and add the other module as a dependency.
if (isset($map[$identifier]) && $map[$identifier] != $module_name) {
if (isset($export['features']['field_base'][$identifier])) {
unset($export['features']['field_base'][$identifier]);
}
$module = $map[$identifier];
$export['dependencies'][$module] = $module;
}
// If the field has not yet been exported, add it
else {
$export['features']['field_base'][$identifier] = $identifier;
$export['dependencies'][$base['module']] = $base['module'];
if ($base['storage']['type'] != variable_get('field_storage_default', 'field_sql_storage')) {
$export['dependencies'][$base['storage']['module']] = $base['storage']['module'];
}
// If taxonomy field, add in the vocabulary
if ($base['type'] == 'taxonomy_term_reference' && !empty($base['settings']['allowed_values'])) {
foreach ($base['settings']['allowed_values'] as $allowed_values) {
if (!empty($allowed_values['vocabulary'])) {
$pipe['taxonomy'][] = $allowed_values['vocabulary'];
}
}
}
}
}
}
return $pipe;
}
/**
* Implements hook_features_export().
*/
function field_instance_features_export($data, &$export, $module_name = '') {
$pipe = array('field_base' => array());
$map = features_get_default_map('field_instance');
// The field_default_field_instances() hook integration is provided by the
// features module so we need to add it as a dependency.
$export['dependencies']['features'] = 'features';
foreach ($data as $identifier) {
if ($instance = features_field_instance_load($identifier)) {
// If this field is already provided by another module, remove the field
// and add the other module as a dependency.
if (isset($map[$identifier]) && $map[$identifier] != $module_name) {
if (isset($export['features']['field_instance'][$identifier])) {
unset($export['features']['field_instance'][$identifier]);
}
$module = $map[$identifier];
$export['dependencies'][$module] = $module;
}
// If the field has not yet been exported, add it
else {
$export['features']['field_instance'][$identifier] = $identifier;
$export['dependencies'][$instance['widget']['module']] = $instance['widget']['module'];
foreach ($instance['display'] as $key => $display) {
if (isset($display['module'])) {
$export['dependencies'][$display['module']] = $display['module'];
// @TODO: handle the pipe to image styles
}
}
$pipe['field_base'][] = $instance['field_name'];
}
}
}
return $pipe;
}
/**
* Implements hook_features_export_render().
*/
function field_base_features_export_render($module, $data, $export = NULL) {
$translatables = $code = array();
$code[] = ' $field_bases = array();';
$code[] = '';
foreach ($data as $identifier) {
if ($field = features_field_base_load($identifier)) {
unset($field['columns']);
// unset($field['locked']);
// Only remove the 'storage' declaration if the field is using the default
// storage type.
if ($field['storage']['type'] == variable_get('field_storage_default', 'field_sql_storage')) {
unset($field['storage']);
}
// If we still have a storage declaration here it means that a non-default
// storage type was altered into to the field definition. And noone would
// never need to change the 'details' key, so don't render it.
if (isset($field['storage']['details'])) {
unset($field['storage']['details']);
}
_field_instance_features_export_sort($field);
$field_export = features_var_export($field, ' ');
$field_identifier = features_var_export($identifier);
$code[] = " // Exported field_base: {$field_identifier}";
$code[] = " \$field_bases[{$field_identifier}] = {$field_export};";
$code[] = "";
}
}
$code[] = ' return $field_bases;';
$code = implode("\n", $code);
return array('field_default_field_bases' => $code);
}
/**
* Implements hook_features_export_render().
*/
function field_instance_features_export_render($module, $data, $export = NULL) {
$translatables = $code = array();
$code[] = ' $field_instances = array();';
$code[] = '';
foreach ($data as $identifier) {
if ($instance = features_field_instance_load($identifier)) {
_field_instance_features_export_sort($instance);
$field_export = features_var_export($instance, ' ');
$instance_identifier = features_var_export($identifier);
$code[] = " // Exported field_instance: {$instance_identifier}";
$code[] = " \$field_instances[{$instance_identifier}] = {$field_export};";
$code[] = "";
if (!empty($instance['label'])) {
$translatables[] = $instance['label'];
}
if (!empty($instance['description'])) {
$translatables[] = $instance['description'];
}
}
}
if (!empty($translatables)) {
$code[] = features_translatables_export($translatables, ' ');
}
$code[] = ' return $field_instances;';
$code = implode("\n", $code);
return array('field_default_field_instances' => $code);
}
// Helper to enforce consistency in field export arrays.
function _field_instance_features_export_sort(&$field, $sort = TRUE) {
// Some arrays are not sorted to preserve order (for example allowed_values).
static $sort_blacklist = array(
'allowed_values',
'format_handlers',
);
if ($sort) {
uksort($field, 'strnatcmp');
}
foreach ($field as $k => $v) {
if (is_array($v)) {
_field_instance_features_export_sort($field[$k], !in_array($k, $sort_blacklist));
}
}
}
/**
* Implements hook_features_revert().
*/
function field_base_features_revert($module) {
field_base_features_rebuild($module);
}
/**
* Implements hook_features_revert().
*/
function field_instance_features_revert($module) {
field_instance_features_rebuild($module);
}
/**
* Implements of hook_features_rebuild().
* Rebuilds fields from code defaults.
*/
function field_base_features_rebuild($module) {
if ($fields = features_get_default('field_base', $module)) {
field_info_cache_clear();
// Load all the existing field bases up-front so that we don't
// have to rebuild the cache all the time.
$existing_fields = field_info_fields();
foreach ($fields as $field) {
// Create or update field.
if (isset($existing_fields[$field['field_name']])) {
$existing_field = $existing_fields[$field['field_name']];
if ($field + $existing_field !== $existing_field) {
field_update_field($field);
}
}
else {
field_create_field($field);
$existing_fields[$field['field_name']] = $field;
}
variable_set('menu_rebuild_needed', TRUE);
}
}
}
/**
* Implements of hook_features_rebuild().
* Rebuilds field instances from code defaults.
*/
function field_instance_features_rebuild($module) {
if ($instances = features_get_default('field_instance', $module)) {
field_info_cache_clear();
// Load all the existing instances up-front so that we don't
// have to rebuild the cache all the time.
$existing_instances = field_info_instances();
foreach ($instances as $field_instance) {
// If the field base information does not exist yet, cancel out.
if (!field_info_field($field_instance['field_name'])) {
continue;
}
// Create or update field instance.
if (isset($existing_instances[$field_instance['entity_type']][$field_instance['bundle']][$field_instance['field_name']])) {
$existing_instance = $existing_instances[$field_instance['entity_type']][$field_instance['bundle']][$field_instance['field_name']];
if ($field_instance + $existing_instance !== $existing_instance) {
try {
field_update_instance($field_instance);
}
catch (FieldException $e) {
watchdog('features', 'Attempt to update field instance %label (in %entity entity type %bundle bundle) failed: %message', array('%label' => $field_instance['field_name'], '%entity' => $field_instance['entity_type'], '%bundle' => $field_instance['bundle'], '%message' => $e->getMessage()), WATCHDOG_ERROR);
}
}
}
else {
try {
field_create_instance($field_instance);
}
catch (FieldException $e) {
watchdog('features', 'Attempt to create field instance %label (in %entity entity type %bundle bundle) failed: %message', array('%label' => $field_instance['field_name'], '%entity' => $field_instance['entity_type'], '%bundle' => $field_instance['bundle'], '%message' => $e->getMessage()), WATCHDOG_ERROR);
}
$existing_instances[$field_instance['entity_type']][$field_instance['bundle']][$field_instance['field_name']] = $field_instance;
}
}
if ($instances) {
variable_set('menu_rebuild_needed', TRUE);
}
}
}
/**
* Load a field base configuration by a field_name identifier.
*/
function features_field_base_load($field_name) {
if ($field_info = field_info_field($field_name)) {
unset($field_info['id']);
unset($field_info['bundles']);
return $field_info;
}
return FALSE;
}
/**
* Load a field's instance configuration by an entity_type-bundle-field_name
* identifier.
*/
function features_field_instance_load($identifier) {
list($entity_type, $bundle, $field_name) = explode('-', $identifier);
if ($instance_info = field_info_instance($entity_type, $field_name, $bundle)) {
unset($instance_info['id']);
unset($instance_info['field_id']);
return $instance_info;
}
return FALSE;
}
/* ----- DEPRECATED FIELD EXPORT -----
* keep this code for backward compatibility with older exports
* until v3.x
*/
/**
* Implements hook_features_export_options().
*/
function field_features_export_options() {
$options = array();
$instances = field_info_instances();
foreach ($instances as $entity_type => $bundles) {
foreach ($bundles as $bundle => $fields) {
foreach ($fields as $field) {
$identifier = "{$entity_type}-{$bundle}-{$field['field_name']}";
$options[$identifier] = $identifier;
}
}
}
return $options;
}
/**
* Implements hook_features_export().
*/
function field_features_export($data, &$export, $module_name = '') {
$pipe = array();
// Convert 'field' to 'field_instance' on features-update.
$pipe['field_instance'] = $data;
return $pipe;
}
/**
* Implements hook_features_export_render().
*/
function field_features_export_render($module, $data, $export = NULL) {
$translatables = $code = array();
$code[] = ' $fields = array();';
$code[] = '';
foreach ($data as $identifier) {
if ($field = features_field_load($identifier)) {
unset($field['field_config']['columns']);
// Only remove the 'storage' declaration if the field is using the default
// storage type.
if ($field['field_config']['storage']['type'] == variable_get('field_storage_default', 'field_sql_storage')) {
unset($field['field_config']['storage']);
}
// If we still have a storage declaration here it means that a non-default
// storage type was altered into to the field definition. And noone would
// never need to change the 'details' key, so don't render it.
if (isset($field['field_config']['storage']['details'])) {
unset($field['field_config']['storage']['details']);
}
_field_features_export_sort($field);
$field_export = features_var_export($field, ' ');
$field_identifier = features_var_export($identifier);
$code[] = " // Exported field: {$field_identifier}.";
$code[] = " \$fields[{$field_identifier}] = {$field_export};";
$code[] = "";
// Add label and description to translatables array.
if (!empty($field['field_instance']['label'])) {
$translatables[] = $field['field_instance']['label'];
}
if (!empty($field['field_instance']['description'])) {
$translatables[] = $field['field_instance']['description'];
}
}
}
if (!empty($translatables)) {
$code[] = features_translatables_export($translatables, ' ');
}
$code[] = ' return $fields;';
$code = implode("\n", $code);
return array('field_default_fields' => $code);
}
// Helper to enforce consistency in field export arrays.
function _field_features_export_sort(&$field, $sort = TRUE) {
// Some arrays are not sorted to preserve order (for example allowed_values).
static $sort_blacklist = array(
'allowed_values',
'format_handlers',
);
if ($sort) {
ksort($field);
}
foreach ($field as $k => $v) {
if (is_array($v)) {
_field_features_export_sort($field[$k], !in_array($k, $sort_blacklist));
}
}
}
/**
* Implements hook_features_revert().
*/
function field_features_revert($module) {
field_features_rebuild($module);
}
/**
* Implements of hook_features_rebuild().
* Rebuilds fields from code defaults.
*/
function field_features_rebuild($module) {
if ($fields = features_get_default('field', $module)) {
field_info_cache_clear();
// Load all the existing fields and instance up-front so that we don't
// have to rebuild the cache all the time.
$existing_fields = field_info_fields();
$existing_instances = field_info_instances();
foreach ($fields as $field) {
// Create or update field.
$field_config = $field['field_config'];
if (isset($existing_fields[$field_config['field_name']])) {
$existing_field = $existing_fields[$field_config['field_name']];
if ($field_config + $existing_field !== $existing_field) {
try {
field_update_field($field_config);
}
catch (FieldException $e) {
watchdog('features', 'Attempt to update field %label failed: %message', array('%label' => $field_config['field_name'], '%message' => $e->getMessage()), WATCHDOG_ERROR);
}
}
}
else {
try {
field_create_field($field_config);
}
catch (FieldException $e) {
watchdog('features', 'Attempt to create field %label failed: %message', array('%label' => $field_config['field_name'], '%message' => $e->getMessage()), WATCHDOG_ERROR);
}
$existing_fields[$field_config['field_name']] = $field_config;
}
// Create or update field instance.
$field_instance = $field['field_instance'];
if (isset($existing_instances[$field_instance['entity_type']][$field_instance['bundle']][$field_instance['field_name']])) {
$existing_instance = $existing_instances[$field_instance['entity_type']][$field_instance['bundle']][$field_instance['field_name']];
if ($field_instance + $existing_instance !== $existing_instance) {
field_update_instance($field_instance);
}
}
else {
field_create_instance($field_instance);
$existing_instances[$field_instance['entity_type']][$field_instance['bundle']][$field_instance['field_name']] = $field_instance;
}
}
if ($fields) {
variable_set('menu_rebuild_needed', TRUE);
}
}
}
/**
* Load a field's configuration and instance configuration by an
* entity_type-bundle-field_name identifier.
*/
function features_field_load($identifier) {
list($entity_type, $bundle, $field_name) = explode('-', $identifier);
$field_info = field_info_field($field_name);
$instance_info = field_info_instance($entity_type, $field_name, $bundle);
if ($field_info && $instance_info) {
unset($field_info['id']);
unset($field_info['bundles']);
unset($instance_info['id']);
unset($instance_info['field_id']);
return array(
'field_config' => $field_info,
'field_instance' => $instance_info,
);
}
return FALSE;
}