8f3877d0f3898cb1870bc68b6d4e9e01339619b5
[yaffs-website] / web / core / modules / field / field.module
1 <?php
2
3 /**
4  * @file
5  * Attach custom data fields to Drupal entities.
6  */
7
8 use Drupal\Core\Config\ConfigImporter;
9 use Drupal\Core\Entity\EntityTypeInterface;
10 use Drupal\Core\Entity\DynamicallyFieldableEntityStorageInterface;
11 use Drupal\field\ConfigImporterFieldPurger;
12 use Drupal\field\Entity\FieldConfig;
13 use Drupal\field\Entity\FieldStorageConfig;
14 use Drupal\field\FieldConfigInterface;
15 use Drupal\field\FieldStorageConfigInterface;
16 use Drupal\Core\Form\FormStateInterface;
17 use Drupal\Core\Routing\RouteMatchInterface;
18 use Drupal\Core\Url;
19
20 /*
21  * Load all public Field API functions. Drupal currently has no
22  * mechanism for auto-loading core APIs, so we have to load them on
23  * every page request.
24  */
25 require_once __DIR__ . '/field.purge.inc';
26
27 /**
28  * @defgroup field Field API
29  * @{
30  * Attaches custom data fields to Drupal entities.
31  *
32  * The Field API allows custom data fields to be attached to Drupal entities and
33  * takes care of storing, loading, editing, and rendering field data. Any entity
34  * type (node, user, etc.) can use the Field API to make itself "fieldable" and
35  * thus allow fields to be attached to it. Other modules can provide a user
36  * interface for managing custom fields via a web browser as well as a wide and
37  * flexible variety of data type, form element, and display format capabilities.
38  *
39  * The Field API defines two primary data structures, FieldStorage and Field,
40  * and the concept of a Bundle. A FieldStorage defines a particular type of data
41  * that can be attached to entities. A Field is attached to a single
42  * Bundle. A Bundle is a set of fields that are treated as a group by the Field
43  * Attach API and is related to a single fieldable entity type.
44  *
45  * For example, suppose a site administrator wants Article nodes to have a
46  * subtitle and photo. Using the Field API or Field UI module, the administrator
47  * creates a field named 'subtitle' of type 'text' and a field named 'photo' of
48  * type 'image'. The administrator (again, via a UI) creates two Field
49  * Instances, one attaching the field 'subtitle' to the 'node' bundle 'article'
50  * and one attaching the field 'photo' to the 'node' bundle 'article'. When the
51  * node storage loads an Article node, it loads the values of the
52  * 'subtitle' and 'photo' fields because they are both attached to the 'node'
53  * bundle 'article'.
54  *
55  * - @link field_types Field Types API @endlink: Defines field types, widget
56  *   types, and display formatters. Field modules use this API to provide field
57  *   types like Text and Node Reference along with the associated form elements
58  *   and display formatters.
59  *
60  * - @link field_purge Field API bulk data deletion @endlink: Cleans up after
61  *   bulk deletion operations such as deletion of field storage or field.
62  */
63
64 /**
65  * Implements hook_help().
66  */
67 function field_help($route_name, RouteMatchInterface $route_match) {
68   switch ($route_name) {
69     case 'help.page.field':
70       $field_ui_url = \Drupal::moduleHandler()->moduleExists('field_ui') ? \Drupal::url('help.page', ['name' => 'field_ui']) : '#';
71       $output = '';
72       $output .= '<h3>' . t('About') . '</h3>';
73       $output .= '<p>' . t('The Field module allows custom data fields to be defined for <em>entity</em> types (see below). The Field module takes care of storing, loading, editing, and rendering field data. Most users will not interact with the Field module directly, but will instead use the <a href=":field-ui-help">Field UI module</a> user interface. Module developers can use the Field API to make new entity types "fieldable" and thus allow fields to be attached to them. For more information, see the <a href=":field">online documentation for the Field module</a>.', [':field-ui-help' => $field_ui_url, ':field' => 'https://www.drupal.org/documentation/modules/field']) . '</p>';
74       $output .= '<h3>' . t('Terminology') . '</h3>';
75       $output .= '<dl>';
76       $output .= '<dt>' . t('Entities and entity types') . '</dt>';
77       $output .= '<dd>' . t('The website\'s content and configuration is managed using <em>entities</em>, which are grouped into <em>entity types</em>. <em>Content entity types</em> are the entity types for site content (such as the main site content, comments, custom blocks, taxonomy terms, and user accounts). <em>Configuration entity types</em> are used to store configuration information for your site, such as individual views in the Views module, and settings for your main site content types.') . '</dd>';
78       $output .= '<dt>' . t('Entity sub-types') . '</dt>';
79       $output .= '<dd>' . t('Some content entity types are further grouped into sub-types (for example, you could have article and page content types within the main site content entity type, and tag and category vocabularies within the taxonomy term entity type); other entity types, such as user accounts, do not have sub-types. Programmers use the term <em>bundle</em> for entity sub-types.') . '</dd>';
80       $output .= '<dt>' . t('Fields and field types') . '</dt>';
81       $output .= '<dd>' . t('Content entity types and sub-types store most of their text, file, and other information in <em>fields</em>. Fields are grouped by <em>field type</em>; field types define what type of data can be stored in that field, such as text, images, or taxonomy term references.') . '</dd>';
82       $output .= '<dt>' . t('Formatters and view modes') . '</dd>';
83       $output .= '<dd>' . t('Content entity types and sub-types can have one or more <em>view modes</em>, used for displaying the entity items. For instance, a content item could be viewed in full content mode on its own page, teaser mode in a list, or RSS mode in a feed. In each view mode, each field can be hidden or displayed, and if it is displayed, you can choose and configure the <em>formatter</em> that is used to display the field. For instance, a long text field can be displayed trimmed or full-length, and taxonomy term reference fields can be displayed in plain text or linked to the taxonomy term page.') . '</dd>';
84       $output .= '<dt>' . t('Widgets and form modes') . '</dd>';
85       $output .= '<dd>' . t('Content entity types and sub-types can have one or more <em>form modes</em>, used for editing. For instance, a content item could be edited in a compact format with only some fields editable, or a full format that allows all fields to be edited. In each form mode, each field can be hidden or displayed, and if it is displayed, you can choose and configure the <em>widget</em> that is used to edit the field. For instance, a taxonomy term reference field can be edited using a select list, radio buttons, or an autocomplete widget.') . '</dd>';
86       $output .= '</dl>';
87       $output .= '<h3>' . t('Uses') . '</h3>';
88       $output .= '<dl>';
89       $output .= '<dt>' . t('Enabling field types, widgets, and formatters') . '</dt>';
90       $output .= '<dd>' . t('The Field module provides the infrastructure for fields; the field types, formatters, and widgets are provided by Drupal core or additional modules. Some of the modules are required; the optional modules can be enabled from the <a href=":modules">Extend administration page</a>. Additional fields, formatters, and widgets may be provided by contributed modules, which you can find in the <a href=":contrib">contributed module section of Drupal.org</a>.', [':modules' => \Drupal::url('system.modules_list'), ':contrib' => 'https://www.drupal.org/project/modules']) . '</dd>';
91
92       $output .= '<h3>' . t('Field, widget, and formatter information') . '</h3>';
93
94       // Make a list of all widget, formatter, and field modules currently
95       // enabled, ordered by displayed module name (module names are not
96       // translated).
97       $items = [];
98       $modules = \Drupal::moduleHandler()->getModuleList();
99       $widgets = \Drupal::service('plugin.manager.field.widget')->getDefinitions();
100       $field_types = \Drupal::service('plugin.manager.field.field_type')->getUiDefinitions();
101       $formatters = \Drupal::service('plugin.manager.field.formatter')->getDefinitions();
102       $providers = [];
103       foreach (array_merge($field_types, $widgets, $formatters) as $plugin) {
104         $providers[] = $plugin['provider'];
105       }
106       $providers = array_unique($providers);
107       sort($providers);
108       foreach ($providers as $provider) {
109         // Skip plugins provided by core components as they do not implement
110         // hook_help().
111         if (isset($modules[$provider])) {
112           $display = \Drupal::moduleHandler()->getName($provider);
113           if (\Drupal::moduleHandler()->implementsHook($provider, 'help')) {
114             $items[] = \Drupal::l($display, new Url('help.page', ['name' => $provider]));
115           }
116           else {
117             $items[] = $display;
118           }
119         }
120       }
121       if ($items) {
122         $output .= '<dt>' . t('Provided by modules') . '</dt>';
123         $output .= '<dd>' . t('Here is a list of the currently enabled field, formatter, and widget modules:');
124         $item_list = [
125           '#theme' => 'item_list',
126           '#items' => $items,
127         ];
128         $output .= \Drupal::service('renderer')->renderPlain($item_list);
129         $output .= '</dd>';
130       }
131
132       $output .= '<dt>' . t('Provided by Drupal core') . '</dt>';
133       $output .= '<dd>' . t('As mentioned previously, some field types, widgets, and formatters are provided by Drupal core. Here are some notes on how to use some of these:');
134       $output .= '<ul>';
135       $output .= '<li><p>' . t('<strong>Entity Reference</strong> fields allow you to create fields that contain links to other entities (such as content items, taxonomy terms, etc.) within the site. This allows you, for example, to include a link to a user within a content item. For more information, see <a href=":er_do">the online documentation for the Entity Reference module</a>.', [':er_do' => 'https://drupal.org/documentation/modules/entityreference']) . '</p>';
136       $output .= '<dl>';
137       $output .= '<dt>' . t('Managing and displaying entity reference fields') . '</dt>';
138       $output .= '<dd>' . t('The <em>settings</em> and the <em>display</em> of the entity reference field can be configured separately. See the <a href=":field_ui">Field UI help</a> for more information on how to manage fields and their display.', [':field_ui' => $field_ui_url]) . '</dd>';
139       $output .= '<dt>' . t('Selecting reference type') . '</dt>';
140       $output .= '<dd>' . t('In the field settings you can select which entity type you want to create a reference to.') . '</dd>';
141       $output .= '<dt>' . t('Filtering and sorting reference fields') . '</dt>';
142       $output .= '<dd>' . t('Depending on the chosen entity type, additional filtering and sorting options are available for the list of entities that can be referred to, in the field settings. For example, the list of users can be filtered by role and sorted by name or ID.') . '</dd>';
143       $output .= '<dt>' . t('Displaying a reference') . '</dt>';
144       $output .= '<dd>' . t('An entity reference can be displayed as a simple label with or without a link to the entity. Alternatively, the referenced entity can be displayed as a teaser (or any other available view mode) inside the referencing entity.') . '</dd>';
145       $output .= '<dt>' . t('Configuring form displays') . '</dt>';
146       $output .= '<dd>' . t('Reference fields have several widgets available on the <em>Manage form display</em> page:');
147       $output .= '<ul>';
148       $output .= '<li>' . t('The <em>Check boxes/radio buttons</em> widget displays the existing entities for the entity type as check boxes or radio buttons based on the <em>Allowed number of values</em> set for the field.') . '</li>';
149       $output .= '<li>' . t('The <em>Select list</em> widget displays the existing entities in a drop-down list or scrolling list box based on the <em>Allowed number of values</em> setting for the field.') . '</li>';
150       $output .= '<li>' . t('The <em>Autocomplete</em> widget displays text fields in which users can type entity labels based on the <em>Allowed number of values</em>. The widget can be configured to display all entities that contain the typed characters or restricted to those starting with those characters.') . '</li>';
151       $output .= '<li>' . t('The <em>Autocomplete (Tags style)</em> widget displays a multi-text field in which users can type in a comma-separated list of entity labels.') . '</li>';
152       $output .= '</ul></dd>';
153       $output .= '</dl></li>';
154       $output .= '<li>' . t('<strong>Number fields</strong>: When you add a number field you can choose from three types: <em>decimal</em>, <em>float</em>, and <em>integer</em>. The <em>decimal</em> number field type allows users to enter exact decimal values, with fixed numbers of decimal places. The <em>float</em> number field type allows users to enter approximate decimal values. The <em>integer</em> number field type allows users to enter whole numbers, such as years (for example, 2012) or values (for example, 1, 2, 5, 305). It does not allow decimals.') . '</li>';
155       $output .= '</ul></dd>';
156       $output .= '</dl>';
157       return $output;
158   }
159 }
160
161 /**
162  * Implements hook_cron().
163  */
164 function field_cron() {
165   // Do a pass of purging on deleted Field API data, if any exists.
166   $limit = \Drupal::config('field.settings')->get('purge_batch_size');
167   field_purge_batch($limit);
168 }
169
170 /**
171  * Implements hook_entity_field_storage_info().
172  */
173 function field_entity_field_storage_info(EntityTypeInterface $entity_type) {
174   if (\Drupal::entityManager()->getStorage($entity_type->id()) instanceof DynamicallyFieldableEntityStorageInterface) {
175     // Query by filtering on the ID as this is more efficient than filtering
176     // on the entity_type property directly.
177     $ids = \Drupal::entityQuery('field_storage_config')
178       ->condition('id', $entity_type->id() . '.', 'STARTS_WITH')
179       ->execute();
180     // Fetch all fields and key them by field name.
181     $field_storages = FieldStorageConfig::loadMultiple($ids);
182     $result = [];
183     foreach ($field_storages as $field_storage) {
184       $result[$field_storage->getName()] = $field_storage;
185     }
186
187     return $result;
188   }
189 }
190
191 /**
192  * Implements hook_entity_bundle_field_info().
193  */
194 function field_entity_bundle_field_info(EntityTypeInterface $entity_type, $bundle, array $base_field_definitions) {
195   if (\Drupal::entityManager()->getStorage($entity_type->id()) instanceof DynamicallyFieldableEntityStorageInterface) {
196     // Query by filtering on the ID as this is more efficient than filtering
197     // on the entity_type property directly.
198     $ids = \Drupal::entityQuery('field_config')
199       ->condition('id', $entity_type->id() . '.' . $bundle . '.', 'STARTS_WITH')
200       ->execute();
201     // Fetch all fields and key them by field name.
202     $field_configs = FieldConfig::loadMultiple($ids);
203     $result = [];
204     foreach ($field_configs as $field_instance) {
205       $result[$field_instance->getName()] = $field_instance;
206     }
207
208     return $result;
209   }
210 }
211
212 /**
213  * Implements hook_entity_bundle_delete().
214  */
215 function field_entity_bundle_delete($entity_type_id, $bundle) {
216   $storage = \Drupal::entityManager()->getStorage('field_config');
217   // Get the fields on the bundle.
218   $fields = $storage->loadByProperties(['entity_type' => $entity_type_id, 'bundle' => $bundle]);
219   // This deletes the data for the field as well as the field themselves. This
220   // function actually just marks the data and fields as deleted, leaving the
221   // garbage collection for a separate process, because it is not always
222   // possible to delete this much data in a single page request (particularly
223   // since for some field types, the deletion is more than just a simple DELETE
224   // query).
225   foreach ($fields as $field) {
226     $field->delete();
227   }
228
229   // We are duplicating the work done by
230   // \Drupal\Core\Field\Plugin\Field\FieldType\EntityReferenceItem::onDependencyRemoval()
231   // because we need to take into account bundles that are not provided by a
232   // config entity type so they are not part of the config dependencies.
233
234   // Gather a list of all entity reference fields.
235   $map = \Drupal::entityManager()->getFieldMapByFieldType('entity_reference');
236   $ids = [];
237   foreach ($map as $type => $info) {
238     foreach ($info as $name => $data) {
239       foreach ($data['bundles'] as $bundle_name) {
240         $ids[] = "$type.$bundle_name.$name";
241       }
242     }
243   }
244
245   // Update the 'target_bundles' handler setting if needed.
246   foreach (FieldConfig::loadMultiple($ids) as $field_config) {
247     if ($field_config->getSetting('target_type') == $entity_type_id) {
248       $handler_settings = $field_config->getSetting('handler_settings');
249       if (isset($handler_settings['target_bundles'][$bundle])) {
250         unset($handler_settings['target_bundles'][$bundle]);
251         $field_config->setSetting('handler_settings', $handler_settings);
252         $field_config->save();
253
254         // In case we deleted the only target bundle allowed by the field we
255         // have to log a critical message because the field will not function
256         // correctly anymore.
257         if ($handler_settings['target_bundles'] === []) {
258           \Drupal::logger('entity_reference')->critical('The %target_bundle bundle (entity type: %target_entity_type) was deleted. As a result, the %field_name entity reference field (entity_type: %entity_type, bundle: %bundle) no longer has any valid bundle it can reference. The field is not working correctly anymore and has to be adjusted.', [
259             '%target_bundle' => $bundle,
260             '%target_entity_type' => $entity_type_id,
261             '%field_name' => $field_config->getName(),
262             '%entity_type' => $field_config->getTargetEntityTypeId(),
263             '%bundle' => $field_config->getTargetBundle()
264           ]);
265         }
266       }
267     }
268   }
269 }
270
271 /**
272  * @} End of "defgroup field".
273  */
274
275 /**
276  * Assembles a partial entity structure with initial IDs.
277  *
278  * @param object $ids
279  *   An object with the properties entity_type (required), entity_id (required),
280  *   revision_id (optional) and bundle (optional).
281  *
282  * @return \Drupal\Core\Entity\EntityInterface
283  *   An entity, initialized with the provided IDs.
284  */
285 function _field_create_entity_from_ids($ids) {
286   $id_properties = [];
287   $entity_type = \Drupal::entityManager()->getDefinition($ids->entity_type);
288   if ($id_key = $entity_type->getKey('id')) {
289     $id_properties[$id_key] = $ids->entity_id;
290   }
291   if (isset($ids->revision_id) && $revision_key = $entity_type->getKey('revision')) {
292     $id_properties[$revision_key] = $ids->revision_id;
293   }
294   if (isset($ids->bundle) && $bundle_key = $entity_type->getKey('bundle')) {
295     $id_properties[$bundle_key] = $ids->bundle;
296   }
297   return \Drupal::entityTypeManager()
298     ->getStorage($ids->entity_type)
299     ->create($id_properties);
300 }
301
302 /**
303  * Implements hook_config_import_steps_alter().
304  */
305 function field_config_import_steps_alter(&$sync_steps, ConfigImporter $config_importer) {
306   $field_storages = ConfigImporterFieldPurger::getFieldStoragesToPurge(
307     $config_importer->getStorageComparer()->getSourceStorage()->read('core.extension'),
308     $config_importer->getStorageComparer()->getChangelist('delete')
309   );
310   if ($field_storages) {
311     // Add a step to the beginning of the configuration synchronization process
312     // to purge field data where the module that provides the field is being
313     // uninstalled.
314     array_unshift($sync_steps, ['\Drupal\field\ConfigImporterFieldPurger', 'process']);
315   };
316 }
317
318 /**
319  * Implements hook_form_FORM_ID_alter().
320  *
321  * Adds a warning if field data will be permanently removed by the configuration
322  * synchronization.
323  *
324  * @see \Drupal\field\ConfigImporterFieldPurger
325  */
326 function field_form_config_admin_import_form_alter(&$form, FormStateInterface $form_state) {
327   // Only display the message when there is a storage comparer available and the
328   // form is not submitted.
329   $user_input = $form_state->getUserInput();
330   $storage_comparer = $form_state->get('storage_comparer');
331   if ($storage_comparer && empty($user_input)) {
332     $field_storages = ConfigImporterFieldPurger::getFieldStoragesToPurge(
333       $storage_comparer->getSourceStorage()->read('core.extension'),
334       $storage_comparer->getChangelist('delete')
335     );
336     if ($field_storages) {
337       foreach ($field_storages as $field) {
338         $field_labels[] = $field->label();
339       }
340       drupal_set_message(\Drupal::translation()->formatPlural(
341         count($field_storages),
342         'This synchronization will delete data from the field %fields.',
343         'This synchronization will delete data from the fields: %fields.',
344         ['%fields' => implode(', ', $field_labels)]
345       ), 'warning');
346     }
347   }
348 }
349
350 /**
351  * Implements hook_ENTITY_TYPE_update() for 'field_storage_config'.
352  *
353  * Reset the field handler settings, when the storage target_type is changed on
354  * an entity reference field.
355  */
356 function field_field_storage_config_update(FieldStorageConfigInterface $field_storage) {
357   if ($field_storage->isSyncing()) {
358     // Don't change anything during a configuration sync.
359     return;
360   }
361
362   // Act on all sub-types of the entity_reference field type.
363   /** @var \Drupal\Core\Field\FieldTypePluginManager $field_type_manager */
364   $field_type_manager = \Drupal::service('plugin.manager.field.field_type');
365   $item_class = 'Drupal\Core\Field\Plugin\Field\FieldType\EntityReferenceItem';
366   $class = $field_type_manager->getPluginClass($field_storage->getType());
367   if ($class !== $item_class && !is_subclass_of($class, $item_class)) {
368     return;
369   }
370
371   // If target_type changed, reset the handler in the fields using that storage.
372   if ($field_storage->getSetting('target_type') !== $field_storage->original->getSetting('target_type')) {
373     foreach ($field_storage->getBundles() as $bundle) {
374       $field = FieldConfig::loadByName($field_storage->getTargetEntityTypeId(), $bundle, $field_storage->getName());
375       // Reset the handler settings. This triggers field_field_config_presave(),
376       // which will take care of reassigning the handler to the correct
377       // derivative for the new target_type.
378       $field->setSetting('handler_settings', []);
379       $field->save();
380     }
381   }
382 }
383
384 /**
385  * Implements hook_ENTITY_TYPE_presave() for 'field_config'.
386  *
387  * Determine the selection handler plugin ID for an entity reference field.
388  */
389 function field_field_config_presave(FieldConfigInterface $field) {
390   // Don't change anything during a configuration sync.
391   if ($field->isSyncing()) {
392     return;
393   }
394
395   // Act on all sub-types of the entity_reference field type.
396   /** @var \Drupal\Core\Field\FieldTypePluginManager $field_type_manager */
397   $field_type_manager = \Drupal::service('plugin.manager.field.field_type');
398   $item_class = 'Drupal\Core\Field\Plugin\Field\FieldType\EntityReferenceItem';
399   $class = $field_type_manager->getPluginClass($field->getType());
400   if ($class !== $item_class && !is_subclass_of($class, $item_class)) {
401     return;
402   }
403
404   // Make sure the selection handler plugin is the correct derivative for the
405   // target entity type.
406   $target_type = $field->getFieldStorageDefinition()->getSetting('target_type');
407   $selection_manager = \Drupal::service('plugin.manager.entity_reference_selection');
408   list($current_handler) = explode(':', $field->getSetting('handler'), 2);
409   $field->setSetting('handler', $selection_manager->getPluginId($target_type, $current_handler));
410 }