EntityDisplayPluginCollection.php in Drupal 10
Same filename and directory in other branches
Namespace
Drupal\Core\EntityFile
core/lib/Drupal/Core/Entity/EntityDisplayPluginCollection.phpView source
<?php
namespace Drupal\Core\Entity;
use Drupal\Core\Plugin\DefaultLazyPluginCollection;
/**
* A collection of formatters or widgets.
*/
class EntityDisplayPluginCollection extends DefaultLazyPluginCollection {
/**
* The key within the plugin configuration that contains the plugin ID.
*
* @var string
*/
protected $pluginKey = 'type';
}
Classes
Name | Description |
---|---|
EntityDisplayPluginCollection | A collection of formatters or widgets. |