Move into nested docroot
This commit is contained in:
parent
83a0d3a149
commit
c8b70abde9
13405 changed files with 0 additions and 0 deletions
|
@ -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
|
|
@ -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 { }
|
Reference in a new issue