Update to Drupal 8.1.2. For more information, see https://www.drupal.org/project/drupal/releases/8.1.2
This commit is contained in:
parent
9eae24d844
commit
28556d630e
1322 changed files with 6699 additions and 2064 deletions
|
@ -11,7 +11,7 @@ use Drupal\Core\Field\FieldStorageDefinitionInterface;
|
|||
/**
|
||||
* Implements callback_allowed_values_function().
|
||||
*
|
||||
* @see options_allowed_values().
|
||||
* @see options_allowed_values()
|
||||
*/
|
||||
function options_test_allowed_values_callback(FieldStorageDefinitionInterface $definition, FieldableEntityInterface $entity = NULL) {
|
||||
$values = array(
|
||||
|
@ -38,7 +38,7 @@ function options_test_allowed_values_callback(FieldStorageDefinitionInterface $d
|
|||
* NULL. Since this is not yet used for testing Views integration, that is
|
||||
* alright for now. Fix this in https://www.drupal.org/node/2012130.
|
||||
*
|
||||
* @see options_allowed_values().
|
||||
* @see options_allowed_values()
|
||||
*/
|
||||
function options_test_dynamic_values_callback(FieldStorageDefinitionInterface $definition, FieldableEntityInterface $entity = NULL, &$cacheable = NULL) {
|
||||
$values = array();
|
||||
|
|
|
@ -96,4 +96,5 @@ class OptionsFieldTest extends OptionsFieldUnitTestBase {
|
|||
$entity->{$this->fieldName}->generateSampleItems();
|
||||
$this->entityValidateAndSave($entity);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Reference in a new issue