caore d8 files

This commit is contained in:
Bachir Soussi Chiadmi
2016-09-06 12:44:15 +02:00
commit 58f46e4e8f
12831 changed files with 1451591 additions and 0 deletions
@@ -0,0 +1,13 @@
name: 'Entity Reference'
type: module
description: 'Deprecated. All the functionality has been moved to Core.'
package: Field types
# version: VERSION
# core: 8.x
hidden: true
# Information added by Drupal.org packaging script on 2016-08-03
version: '8.1.8'
core: '8.x'
project: 'drupal'
datestamp: 1470233792
@@ -0,0 +1,7 @@
<?php
/**
* @file
* Deprecated. All its functionality has been moved to Core. This empty module
* will be removed in Drupal 9.0.x.
*/
@@ -0,0 +1,15 @@
<?php
namespace Drupal\entity_reference;
use Drupal\Core\Field\Plugin\Field\FieldType\EntityReferenceItem;
/**
* Deprecated. Alternative implementation of the 'entity_reference' field type.
*
* @deprecated in Drupal 8.0.x and will be removed in Drupal 9.0.x. Use
* \Drupal\Core\Field\Plugin\Field\FieldType\EntityReferenceItem instead.
*
* @see \Drupal\Core\Field\Plugin\Field\FieldType\EntityReferenceItem
*/
class ConfigurableEntityReferenceItem extends EntityReferenceItem { }
@@ -0,0 +1,15 @@
<?php
namespace Drupal\entity_reference\Plugin\views\display;
use Drupal\views\Plugin\views\display\EntityReference as ViewsEntityReference;
/**
* Deprecated. The plugin that handles an EntityReference display.
*
* @deprecated in Drupal 8.0.x and will be removed in Drupal 9.0.x. Use
* \Drupal\views\Plugin\views\display\EntityReference instead.
*
* @see \Drupal\views\Plugin\views\display\EntityReference
*/
class EntityReference extends ViewsEntityReference { }
@@ -0,0 +1,15 @@
<?php
namespace Drupal\entity_reference\Plugin\views\row;
use Drupal\views\Plugin\views\row\EntityReference as ViewsEntityReference;
/**
* EntityReference row plugin.
*
* @deprecated in Drupal 8.0.x and will be removed in Drupal 9.0.x. Use
* \Drupal\views\Plugin\views\row\EntityReference instead.
*
* @see \Drupal\views\Plugin\views\row\EntityReference
*/
class EntityReference extends ViewsEntityReference { }
@@ -0,0 +1,15 @@
<?php
namespace Drupal\entity_reference\Plugin\views\style;
use Drupal\views\Plugin\views\style\EntityReference as ViewsEntityReference;
/**
* Deprecated. EntityReference style plugin.
*
* @deprecated in Drupal 8.0.x and will be removed in Drupal 9.0.x. Use
* \Drupal\views\Plugin\views\style\EntityReference instead.
*
* @see \Drupal\views\Plugin\views\style\EntityReference
*/
class EntityReference extends ViewsEntityReference { }