public function EntityFormDisplay::getPluginCollections in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Entity/Entity/EntityFormDisplay.php \Drupal\Core\Entity\Entity\EntityFormDisplay::getPluginCollections()
Gets the plugin collections used by this entity.
Return value
\Drupal\Component\Plugin\LazyPluginCollection[] An array of plugin collections, keyed by the property name they use to store their configuration.
Overrides EntityWithPluginCollectionInterface::getPluginCollections
File
- core/
lib/ Drupal/ Core/ Entity/ Entity/ EntityFormDisplay.php, line 323 - Contains \Drupal\Core\Entity\Entity\EntityFormDisplay.
Class
- EntityFormDisplay
- Configuration entity that contains widget options for all components of a entity form in a given form mode.
Namespace
Drupal\Core\Entity\EntityCode
public function getPluginCollections() {
$configurations = array();
foreach ($this
->getComponents() as $field_name => $configuration) {
if (!empty($configuration['type']) && ($field_definition = $this
->getFieldDefinition($field_name))) {
$configurations[$configuration['type']] = $configuration + array(
'field_definition' => $field_definition,
'form_mode' => $this->mode,
);
}
}
return array(
'widgets' => new EntityDisplayPluginCollection($this->pluginManager, $configurations),
);
}