Move into nested docroot

This commit is contained in:
Rob Davies 2017-02-13 15:31:17 +00:00
parent 83a0d3a149
commit c8b70abde9
13405 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,7 @@
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

View file

@ -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.
*/

View file

@ -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 { }

View file

@ -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 { }

View file

@ -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 { }

View file

@ -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 { }