updated core and modules

This commit is contained in:
Bachir Soussi Chiadmi
2017-09-09 16:27:51 +02:00
parent 027aa99b32
commit 41863f872c
7810 changed files with 318922 additions and 83631 deletions
+10 -10
View File
@@ -20,7 +20,7 @@ use Drupal\Core\Field\FieldStorageDefinitionInterface;
* properties.
* @param array $context
* An associative array containing:
* - field_definition: The field definition
* - fieldDefinition: The field definition
* (\Drupal\Core\Field\FieldDefinitionInterface).
* - entity: The entity object the field is attached to
* (\Drupal\Core\Entity\EntityInterface).
@@ -30,7 +30,7 @@ use Drupal\Core\Field\FieldStorageDefinitionInterface;
*/
function hook_options_list_alter(array &$options, array $context) {
// Check if this is the field we want to change.
if ($context['field']->id() == 'field_option') {
if ($context['fieldDefinition']->id() == 'field_option') {
// Change the label of the empty option.
$options['_none'] = t('== Empty ==');
}
@@ -81,21 +81,21 @@ function hook_options_list_alter(array &$options, array $context) {
*/
function callback_allowed_values_function(FieldStorageDefinitionInterface $definition, FieldableEntityInterface $entity = NULL, &$cacheable = TRUE) {
if (isset($entity) && ($entity->bundle() == 'not_a_programmer')) {
$values = array(
$values = [
1 => 'One',
2 => 'Two',
);
];
}
else {
$values = array(
'Group 1' => array(
$values = [
'Group 1' => [
0 => 'Zero',
1 => 'One',
),
'Group 2' => array(
],
'Group 2' => [
2 => 'Two',
),
);
],
];
}
return $values;