Move all files to 2017/

This commit is contained in:
Oliver Davies 2025-09-29 22:25:17 +01:00
parent ac7370f67f
commit 2875863330
15717 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 {}