Update to drupal 8.0.0-rc1. For more information, see https://www.drupal.org/node/2582663

This commit is contained in:
Greg Anderson 2015-10-08 11:40:12 -07:00
parent eb34d130a8
commit f32e58e4b1
8476 changed files with 211648 additions and 170042 deletions

View file

@ -77,6 +77,11 @@ use Drupal\views\ViewExecutable;
* @}
*/
/**
* @addtogroup hooks
* @{
*/
/**
* Analyze a view to provide warnings about its configuration.
*
@ -482,7 +487,7 @@ function hook_field_views_data(\Drupal\field\FieldStorageConfigInterface $field_
'id' => 'standard',
'base' => 'file_managed',
'base field' => 'target_id',
'label' => t('image from !field_name', array('!field_name' => $field_storage->getName())),
'label' => t('image from @field_name', array('@field_name' => $field_storage->getName())),
);
}
@ -526,7 +531,7 @@ function hook_field_views_data_alter(array &$data, \Drupal\field\FieldStorageCon
'field field' => $field_name . '_target_id',
'base' => $entity_type->getBaseTable(),
'base field' => $entity_type->getKey('id'),
'label' => t('!field_name', array('!field_name' => $field_name)),
'label' => $field_name,
'join_extra' => array(
0 => array(
'field' => 'deleted',
@ -583,7 +588,7 @@ function hook_field_views_data_views_data_alter(array &$data, \Drupal\field\Fiel
'field field' => $field_name . '_target_id',
'base' => $entity_type->getBaseTable(),
'base field' => $entity_type->getKey('id'),
'label' => t('!field_name', array('!field_name' => $field_name)),
'label' => $field_name,
'join_extra' => array(
0 => array(
'field' => 'deleted',
@ -1214,6 +1219,10 @@ function hook_views_plugins_sort_alter(array &$plugins) {
$plugins['title']['class'] = 'Drupal\\example\\ExampleClass';
}
/**
* @} End of "addtogroup hooks".
*/
/**
* @}
*/