EntityDisplayPluginCollection.php 360 B

12345678910111213141516171819
  1. <?php
  2. namespace Drupal\Core\Entity;
  3. use Drupal\Core\Plugin\DefaultLazyPluginCollection;
  4. /**
  5. * A collection of formatters or widgets.
  6. */
  7. class EntityDisplayPluginCollection extends DefaultLazyPluginCollection {
  8. /**
  9. * The key within the plugin configuration that contains the plugin ID.
  10. *
  11. * @var string
  12. */
  13. protected $pluginKey = 'type';
  14. }