You are here

EntityDisplayPluginCollection.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/lib/Drupal/Core/Entity/EntityDisplayPluginCollection.php

Namespace

Drupal\Core\Entity

File

core/lib/Drupal/Core/Entity/EntityDisplayPluginCollection.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Core\Entity\EntityDisplayPluginCollection.
 */
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

Namesort descending Description
EntityDisplayPluginCollection A collection of formatters or widgets.