diff --git a/core/lib/Drupal/Core/Field/FieldItemInterface.php b/core/lib/Drupal/Core/Field/FieldItemInterface.php index 0ec1a20217c300eaa6207d4c6843da8bd40f0c2b..03fab7879dba823cdf5ba079f8e6d07ad9e0624f 100644 --- a/core/lib/Drupal/Core/Field/FieldItemInterface.php +++ b/core/lib/Drupal/Core/Field/FieldItemInterface.php @@ -263,7 +263,7 @@ public static function defaultFieldSettings(); * * An example of a conversion between representations might be an * "allowed_values" setting that's structured by the field type as a - * \Drupal\Core\TypedData\AllowedValuesInterface::getPossibleOptions() + * \Drupal\Core\TypedData\OptionsProviderInterface::getPossibleOptions() * result (i.e., values as keys and labels as values). For such a use case, * in order to comply with the above, this method could convert that * representation to a numerically indexed array whose values are sub-arrays diff --git a/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/BooleanItem.php b/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/BooleanItem.php index 7ff90e9039046c39384dd6dcb44204e2a77d6007..2fb82428ff042a89c3d4644c40b64da3febebd49 100644 --- a/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/BooleanItem.php +++ b/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/BooleanItem.php @@ -12,7 +12,7 @@ use Drupal\Core\Field\FieldStorageDefinitionInterface; use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Session\AccountInterface; -use Drupal\Core\TypedData\AllowedValuesInterface; +use Drupal\Core\TypedData\OptionsProviderInterface; use Drupal\Core\TypedData\DataDefinition; /** @@ -26,7 +26,7 @@ * default_formatter = "boolean", * ) */ -class BooleanItem extends FieldItemBase implements AllowedValuesInterface { +class BooleanItem extends FieldItemBase implements OptionsProviderInterface { /** * {@inheritdoc} diff --git a/core/lib/Drupal/Core/TypedData/AllowedValuesInterface.php b/core/lib/Drupal/Core/TypedData/OptionsProviderInterface.php similarity index 97% rename from core/lib/Drupal/Core/TypedData/AllowedValuesInterface.php rename to core/lib/Drupal/Core/TypedData/OptionsProviderInterface.php index 5c782ae38e14ddb2d14c1f8b38c7cc36cf66ff58..2a9c1600b444a4e0b47fe79ba22abe3059115197 100644 --- a/core/lib/Drupal/Core/TypedData/AllowedValuesInterface.php +++ b/core/lib/Drupal/Core/TypedData/OptionsProviderInterface.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\Core\TypedData\AllowedValuesInterface. + * Contains \Drupal\Core\TypedData\OptionsProviderInterface. */ namespace Drupal\Core\TypedData; @@ -31,7 +31,7 @@ * * @see \Drupal\options\Plugin\Field\FieldWidget\OptionsWidgetBase */ -interface AllowedValuesInterface { +interface OptionsProviderInterface { /** * Returns an array of possible values. diff --git a/core/lib/Drupal/Core/TypedData/TypedDataManager.php b/core/lib/Drupal/Core/TypedData/TypedDataManager.php index d8b70f6bb22f99168c04f7ab5ddb36b2f0ab17ca..726ae38f5749da20ff257478d6d18a2fc92de711 100644 --- a/core/lib/Drupal/Core/TypedData/TypedDataManager.php +++ b/core/lib/Drupal/Core/TypedData/TypedDataManager.php @@ -377,7 +377,7 @@ public function getDefaultConstraints(DataDefinitionInterface $definition) { $constraints['NotNull'] = array(); } // Check if the class provides allowed values. - if (is_subclass_of($definition->getClass(),'Drupal\Core\TypedData\AllowedValuesInterface')) { + if (is_subclass_of($definition->getClass(),'Drupal\Core\TypedData\OptionsProviderInterface')) { $constraints['AllowedValues'] = array(); } // Add any constraints about referenced data. diff --git a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/AllowedValuesConstraint.php b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/AllowedValuesConstraint.php index 34b652db900b9d9cd3ed55b74e8107a814e54cfc..939fbabbcfffd0af7123410998ea3e240906f94f 100644 --- a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/AllowedValuesConstraint.php +++ b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/AllowedValuesConstraint.php @@ -17,7 +17,7 @@ * label = @Translation("Allowed values", context = "Validation") * ) * - * @see \Drupal\Core\TypedData\AllowedValuesInterface + * @see \Drupal\Core\TypedData\OptionsProviderInterface */ class AllowedValuesConstraint extends Choice { diff --git a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/AllowedValuesConstraintValidator.php b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/AllowedValuesConstraintValidator.php index da5263a8aaf331fb8f9b95c7dc80f3f637d1f4ad..efc6906559037871fc1d8d6e920bca277f9140b9 100644 --- a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/AllowedValuesConstraintValidator.php +++ b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/AllowedValuesConstraintValidator.php @@ -7,7 +7,7 @@ namespace Drupal\Core\Validation\Plugin\Validation\Constraint; -use Drupal\Core\TypedData\AllowedValuesInterface; +use Drupal\Core\TypedData\OptionsProviderInterface; use Drupal\Core\TypedData\ComplexDataInterface; use Symfony\Component\Validator\Constraint; use Symfony\Component\Validator\Constraints\ChoiceValidator; @@ -23,7 +23,7 @@ class AllowedValuesConstraintValidator extends ChoiceValidator { public function validate($value, Constraint $constraint) { $typed_data = $this->context->getMetadata()->getTypedData(); - if ($typed_data instanceof AllowedValuesInterface) { + if ($typed_data instanceof OptionsProviderInterface) { $account = \Drupal::currentUser(); $allowed_values = $typed_data->getSettableValues($account); $constraint->choices = $allowed_values; diff --git a/core/modules/entity_reference/src/ConfigurableEntityReferenceItem.php b/core/modules/entity_reference/src/ConfigurableEntityReferenceItem.php index b90bdb6e3831fb67f088632701b2fccfd59f46e7..98ddf9be1ab8a5eb6873d7ed453d809511801e7c 100644 --- a/core/modules/entity_reference/src/ConfigurableEntityReferenceItem.php +++ b/core/modules/entity_reference/src/ConfigurableEntityReferenceItem.php @@ -13,7 +13,7 @@ use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Form\OptGroup; use Drupal\Core\Session\AccountInterface; -use Drupal\Core\TypedData\AllowedValuesInterface; +use Drupal\Core\TypedData\OptionsProviderInterface; use Drupal\Core\TypedData\DataDefinition; use Drupal\Core\Validation\Plugin\Validation\Constraint\AllowedValuesConstraint; use Drupal\field\FieldStorageConfigInterface; @@ -29,7 +29,7 @@ * * @see entity_reference_field_info_alter(). */ -class ConfigurableEntityReferenceItem extends EntityReferenceItem implements AllowedValuesInterface { +class ConfigurableEntityReferenceItem extends EntityReferenceItem implements OptionsProviderInterface { /** * {@inheritdoc} diff --git a/core/modules/filter/src/Plugin/DataType/FilterFormat.php b/core/modules/filter/src/Plugin/DataType/FilterFormat.php index f842896b7f42312a3e66e9e2c0f3e9710de8884f..31ab7f74efed07f72090e7dd4ddaf5c48367c9f3 100644 --- a/core/modules/filter/src/Plugin/DataType/FilterFormat.php +++ b/core/modules/filter/src/Plugin/DataType/FilterFormat.php @@ -8,7 +8,7 @@ namespace Drupal\filter\Plugin\DataType; use Drupal\Core\Session\AccountInterface; -use Drupal\Core\TypedData\AllowedValuesInterface; +use Drupal\Core\TypedData\OptionsProviderInterface; use Drupal\Core\TypedData\Plugin\DataType\String; /** @@ -19,7 +19,7 @@ * label = @Translation("Filter format") * ) */ -class FilterFormat extends String implements AllowedValuesInterface { +class FilterFormat extends String implements OptionsProviderInterface { /** * {@inheritdoc} diff --git a/core/modules/filter/src/Tests/FilterAPITest.php b/core/modules/filter/src/Tests/FilterAPITest.php index 7c513a4ecf65f6e50e96807cd4dc883666040121..2cde55e20a4265b9f43eb35676b2af78657586d3 100644 --- a/core/modules/filter/src/Tests/FilterAPITest.php +++ b/core/modules/filter/src/Tests/FilterAPITest.php @@ -8,7 +8,7 @@ namespace Drupal\filter\Tests; use Drupal\Core\Session\AnonymousUserSession; -use Drupal\Core\TypedData\AllowedValuesInterface; +use Drupal\Core\TypedData\OptionsProviderInterface; use Drupal\Core\TypedData\DataDefinition; use Drupal\filter\Plugin\DataType\FilterFormat; use Drupal\filter\Plugin\FilterInterface; @@ -267,7 +267,7 @@ function testTypedDataAPI() { $definition = DataDefinition::create('filter_format'); $data = \Drupal::typedDataManager()->create($definition); - $this->assertTrue($data instanceof AllowedValuesInterface, 'Typed data object implements \Drupal\Core\TypedData\AllowedValuesInterface'); + $this->assertTrue($data instanceof OptionsProviderInterface, 'Typed data object implements \Drupal\Core\TypedData\OptionsProviderInterface'); $filtered_html_user = $this->createUser(array('uid' => 2), array( entity_load('filter_format', 'filtered_html')->getPermissionName(), diff --git a/core/modules/options/options.api.php b/core/modules/options/options.api.php index 20010accf0ea44719b6ba9db9bf346d2c747f067..648d2dd58da31ce2fc80db3f87d5dd0a8ca5de81 100644 --- a/core/modules/options/options.api.php +++ b/core/modules/options/options.api.php @@ -12,7 +12,7 @@ * * @param array $options * The array of options for the field, as returned by - * \Drupal\Core\TypedData\AllowedValuesInterface::getSettableOptions(). An + * \Drupal\Core\TypedData\OptionsProviderInterface::getSettableOptions(). An * empty option (_none) might have been added, depending on the field * properties. * diff --git a/core/modules/options/src/Plugin/Field/FieldType/ListItemBase.php b/core/modules/options/src/Plugin/Field/FieldType/ListItemBase.php index 00bbdf64350b4f7a0002e4461d040acd50fc94e0..05ec40d99dde0e31f4c68ac9a76fbb1298d6ea81 100644 --- a/core/modules/options/src/Plugin/Field/FieldType/ListItemBase.php +++ b/core/modules/options/src/Plugin/Field/FieldType/ListItemBase.php @@ -13,12 +13,12 @@ use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Form\OptGroup; use Drupal\Core\Session\AccountInterface; -use Drupal\Core\TypedData\AllowedValuesInterface; +use Drupal\Core\TypedData\OptionsProviderInterface; /** * Plugin base class inherited by the options field types. */ -abstract class ListItemBase extends FieldItemBase implements AllowedValuesInterface { +abstract class ListItemBase extends FieldItemBase implements OptionsProviderInterface { use AllowedTagsXssTrait; diff --git a/core/modules/options/src/Plugin/Field/FieldWidget/OptionsWidgetBase.php b/core/modules/options/src/Plugin/Field/FieldWidget/OptionsWidgetBase.php index 49f2d817fea5e97fae34e66c4617adcec2daabfb..ab9325003dac5c24d2e78d9183661cb9cd3bfda0 100644 --- a/core/modules/options/src/Plugin/Field/FieldWidget/OptionsWidgetBase.php +++ b/core/modules/options/src/Plugin/Field/FieldWidget/OptionsWidgetBase.php @@ -18,10 +18,10 @@ * * Field types willing to enable one or several of the widgets defined in * options.module (select, radios/checkboxes, on/off checkbox) need to - * implement the AllowedValuesInterface to specify the list of options to + * implement the OptionsProviderInterface to specify the list of options to * display in the widgets. * - * @see \Drupal\Core\TypedData\AllowedValuesInterface + * @see \Drupal\Core\TypedData\OptionsProviderInterface */ abstract class OptionsWidgetBase extends WidgetBase { diff --git a/core/modules/taxonomy/src/Plugin/Field/FieldType/TaxonomyTermReferenceItem.php b/core/modules/taxonomy/src/Plugin/Field/FieldType/TaxonomyTermReferenceItem.php index a22f54cd0ac135ab9802aa9b6f4c7116badd01f3..a2965c95bc4400ab046488ce42a522311eca15a7 100644 --- a/core/modules/taxonomy/src/Plugin/Field/FieldType/TaxonomyTermReferenceItem.php +++ b/core/modules/taxonomy/src/Plugin/Field/FieldType/TaxonomyTermReferenceItem.php @@ -12,7 +12,7 @@ use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Form\OptGroup; use Drupal\Core\Session\AccountInterface; -use Drupal\Core\TypedData\AllowedValuesInterface; +use Drupal\Core\TypedData\OptionsProviderInterface; /** * Plugin implementation of the 'term_reference' field type. @@ -26,7 +26,7 @@ * list_class = "\Drupal\Core\Field\EntityReferenceFieldItemList" * ) */ -class TaxonomyTermReferenceItem extends EntityReferenceItem implements AllowedValuesInterface { +class TaxonomyTermReferenceItem extends EntityReferenceItem implements OptionsProviderInterface { /** * {@inheritdoc}