options.module 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <?php
  2. /**
  3. * @file
  4. * Defines selection, check box and radio button widgets for text and numeric fields.
  5. */
  6. use Drupal\Core\Url;
  7. use Drupal\Core\Entity\FieldableEntityInterface;
  8. use Drupal\Core\Entity\Exception\FieldStorageDefinitionUpdateForbiddenException;
  9. use Drupal\Core\Field\FieldStorageDefinitionInterface;
  10. use Drupal\Core\Routing\RouteMatchInterface;
  11. use Drupal\field\FieldStorageConfigInterface;
  12. /**
  13. * Implements hook_help().
  14. */
  15. function options_help($route_name, RouteMatchInterface $route_match) {
  16. switch ($route_name) {
  17. case 'help.page.options':
  18. $output = '';
  19. $output .= '<h3>' . t('About') . '</h3>';
  20. $output .= '<p>' . t('The Options module allows you to create fields where data values are selected from a fixed list of options. Usually these items are entered through a select list, checkboxes, or radio buttons. See the <a href=":field">Field module help</a> and the <a href=":field_ui">Field UI help</a> pages for general information on fields and how to create and manage them. For more information, see the <a href=":options_do">online documentation for the Options module</a>.', [':field' => Url::fromRoute('help.page', ['name' => 'field'])->toString(), ':field_ui' => (\Drupal::moduleHandler()->moduleExists('field_ui')) ? Url::fromRoute('help.page', ['name' => 'field_ui'])->toString() : '#', ':options_do' => 'https://www.drupal.org/documentation/modules/options']) . '</p>';
  21. $output .= '<h3>' . t('Uses') . '</h3>';
  22. $output .= '<dl>';
  23. $output .= '<dt>' . t('Managing and displaying list fields') . '</dt>';
  24. $output .= '<dd>' . t('The <em>settings</em> and the <em>display</em> of the list fields 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' => (\Drupal::moduleHandler()->moduleExists('field_ui')) ? Url::fromRoute('help.page', ['name' => 'field_ui'])->toString() : '#']) . '</dd>';
  25. $output .= '<dt>' . t('Defining option keys and labels') . '</dt>';
  26. $output .= '<dd>' . t('When you define the list options you can define a key and a label for each option in the list. The label will be shown to the users while the key gets stored in the database.') . '</dd>';
  27. $output .= '<dt>' . t('Choosing list field type') . '</dt>';
  28. $output .= '<dd>' . t('There are three types of list fields, which store different types of data: <em>float</em>, <em>integer</em> or, <em>text</em>. The <em>float</em> type allows storing approximate decimal values. The <em>integer</em> type allows storing whole numbers, such as years (for example, 2012) or values (for example, 1, 2, 5, 305). The <em>text</em> list field type allows storing text values. No matter which type of list field you choose, you can define whatever labels you wish for data entry.') . '</dd>';
  29. $output .= '</dl>';
  30. return $output;
  31. }
  32. }
  33. /**
  34. * Implements hook_ENTITY_TYPE_update() for 'field_storage_config'.
  35. */
  36. function options_field_storage_config_update(FieldStorageConfigInterface $field_storage) {
  37. drupal_static_reset('options_allowed_values');
  38. }
  39. /**
  40. * Implements hook_ENTITY_TYPE_delete() for 'field_storage_config'.
  41. */
  42. function options_field_storage_config_delete(FieldStorageConfigInterface $field_storage) {
  43. drupal_static_reset('options_allowed_values');
  44. }
  45. /**
  46. * Returns the array of allowed values for a list field.
  47. *
  48. * The strings are not safe for output. Keys and values of the array should be
  49. * sanitized through \Drupal\Core\Field\AllowedTagsXssTrait::fieldFilterXss()
  50. * before being displayed.
  51. *
  52. * @param \Drupal\Core\Field\FieldStorageDefinitionInterface $definition
  53. * The field storage definition.
  54. * @param \Drupal\Core\Entity\FieldableEntityInterface|null $entity
  55. * (optional) The specific entity when this function is called from the
  56. * context of a specific field on a specific entity. This allows custom
  57. * 'allowed_values_function' callbacks to either restrict the values or
  58. * customize the labels for particular bundles and entities. NULL when
  59. * there is not a specific entity available, such as for Views filters.
  60. *
  61. * @return array
  62. * The array of allowed values. Keys of the array are the raw stored values
  63. * (number or text), values of the array are the display labels.
  64. *
  65. * @see callback_allowed_values_function()
  66. */
  67. function options_allowed_values(FieldStorageDefinitionInterface $definition, FieldableEntityInterface $entity = NULL) {
  68. $allowed_values = &drupal_static(__FUNCTION__, []);
  69. $cache_keys = [$definition->getTargetEntityTypeId(), $definition->getName()];
  70. if ($entity) {
  71. $cache_keys[] = 'entity';
  72. }
  73. $cache_id = implode(':', $cache_keys);
  74. if (!isset($allowed_values[$cache_id])) {
  75. $function = $definition->getSetting('allowed_values_function');
  76. // If $cacheable is FALSE, then the allowed values are not statically
  77. // cached. See options_test_dynamic_values_callback() for an example of
  78. // generating dynamic and uncached values.
  79. $cacheable = TRUE;
  80. if (!empty($function)) {
  81. $values = $function($definition, $entity, $cacheable);
  82. }
  83. else {
  84. $values = $definition->getSetting('allowed_values');
  85. }
  86. if ($cacheable) {
  87. $allowed_values[$cache_id] = $values;
  88. }
  89. else {
  90. return $values;
  91. }
  92. }
  93. return $allowed_values[$cache_id];
  94. }
  95. /**
  96. * Implements hook_field_storage_config_update_forbid().
  97. */
  98. function options_field_storage_config_update_forbid(FieldStorageConfigInterface $field_storage, FieldStorageConfigInterface $prior_field_storage) {
  99. if ($field_storage->getTypeProvider() == 'options' && $field_storage->hasData()) {
  100. // Forbid any update that removes allowed values with actual data.
  101. $allowed_values = $field_storage->getSetting('allowed_values');
  102. $prior_allowed_values = $prior_field_storage->getSetting('allowed_values');
  103. $lost_keys = array_keys(array_diff_key($prior_allowed_values, $allowed_values));
  104. if (_options_values_in_use($field_storage->getTargetEntityTypeId(), $field_storage->getName(), $lost_keys)) {
  105. throw new FieldStorageDefinitionUpdateForbiddenException("A list field '{$field_storage->getName()}' with existing data cannot have its keys changed.");
  106. }
  107. }
  108. }
  109. /**
  110. * Checks if a list of values are being used in actual field values.
  111. */
  112. function _options_values_in_use($entity_type, $field_name, $values) {
  113. if ($values) {
  114. $result = \Drupal::entityQuery($entity_type)
  115. ->condition($field_name . '.value', $values, 'IN')
  116. ->count()
  117. ->accessCheck(FALSE)
  118. ->range(0, 1)
  119. ->execute();
  120. if ($result) {
  121. return TRUE;
  122. }
  123. }
  124. return FALSE;
  125. }