class EntityBrowser in Entity Browser 8.2
Same name in this branch
- 8.2 src/Entity/EntityBrowser.php \Drupal\entity_browser\Entity\EntityBrowser
- 8.2 src/Plugin/views/display/EntityBrowser.php \Drupal\entity_browser\Plugin\views\display\EntityBrowser
Same name and namespace in other branches
- 8 src/Entity/EntityBrowser.php \Drupal\entity_browser\Entity\EntityBrowser
Defines an entity browser configuration entity.
Plugin annotation
@ConfigEntityType(
id = "entity_browser",
label = @Translation("Entity browser"),
handlers = {
"form" = {
"entity_browser" = "Drupal\entity_browser\Form\EntityBrowserForm",
"default" = "Drupal\entity_browser\Form\EntityBrowserEditForm",
"edit" = "Drupal\entity_browser\Form\EntityBrowserEditForm",
"delete" = "Drupal\entity_browser\Form\EntityBrowserDeleteForm",
"edit_widgets" = "Drupal\entity_browser\Form\WidgetsConfig",
},
"access" = "Drupal\Core\Entity\EntityAccessControlHandler",
"list_builder" = "Drupal\entity_browser\Controllers\EntityBrowserListBuilder",
},
links = {
"canonical" = "/admin/config/content/entity_browser/{entity_browser}",
"collection" = "/admin/config/content/entity_browser",
"edit-form" = "/admin/config/content/entity_browser/{entity_browser}/edit",
"edit-widgets" = "/admin/config/content/entity_browser/{entity_browser}/edit_widgets",
"delete-form" = "/admin/config/content/entity_browser/{entity_browser}/delete",
},
admin_permission = "administer entity browsers",
config_prefix = "browser",
entity_keys = {
"id" = "name",
"label" = "label"
},
config_export = {
"name",
"label",
"display",
"display_configuration",
"selection_display",
"selection_display_configuration",
"widget_selector",
"widget_selector_configuration",
"widgets",
},
)
Hierarchy
- class \Drupal\Core\Entity\EntityBase implements EntityInterface uses RefinableCacheableDependencyTrait, DependencySerializationTrait
- class \Drupal\Core\Config\Entity\ConfigEntityBase implements ConfigEntityInterface uses SynchronizableEntityTrait, PluginDependencyTrait
- class \Drupal\entity_browser\Entity\EntityBrowser implements EntityWithPluginCollectionInterface, EntityBrowserInterface
- class \Drupal\Core\Config\Entity\ConfigEntityBase implements ConfigEntityInterface uses SynchronizableEntityTrait, PluginDependencyTrait
Expanded class hierarchy of EntityBrowser
4 files declare their use of EntityBrowser
- ConfigurationTest.php in tests/
src/ FunctionalJavascript/ ConfigurationTest.php - EntityBrowserElement.php in src/
Element/ EntityBrowserElement.php - EntityReferenceBrowserWidget.php in src/
Plugin/ Field/ FieldWidget/ EntityReferenceBrowserWidget.php - FieldWidgetConfigTest.php in tests/
src/ FunctionalJavascript/ FieldWidgetConfigTest.php
File
- src/
Entity/ EntityBrowser.php, line 58
Namespace
Drupal\entity_browser\EntityView source
class EntityBrowser extends ConfigEntityBase implements EntityBrowserInterface, EntityWithPluginCollectionInterface {
/**
* The name of the entity browser.
*
* @var string
*/
public $name;
/**
* The entity browser label.
*
* @var string
*/
public $label;
/**
* The display plugin id.
*
* @var string
*/
public $display;
/**
* The display plugin configuration.
*
* @var array
*/
public $display_configuration = [];
/**
* Display lazy plugin collection.
*
* @var \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection
*/
protected $displayCollection;
/**
* The array of widgets for this entity browser.
*
* @var array
*/
protected $widgets = [];
/**
* Holds the collection of widgets that are used by this entity browser.
*
* @var \Drupal\entity_browser\WidgetsCollection
*/
protected $widgetsCollection;
/**
* The selection display plugin ID.
*
* @var string
*/
public $selection_display;
/**
* The selection display plugin configuration.
*
* @var array
*/
public $selection_display_configuration = [];
/**
* Selection display plugin collection.
*
* @var \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection
*/
protected $selectionDisplayCollection;
/**
* The widget selector plugin ID.
*
* @var string
*/
public $widget_selector;
/**
* The widget selector plugin configuration.
*
* @var array
*/
public $widget_selector_configuration = [];
/**
* Widget selector plugin collection.
*
* @var \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection
*/
protected $widgetSelectorCollection;
/**
* Additional widget parameters.
*
* @var array
*/
protected $additional_widget_parameters = [];
/**
* Name of the form class.
*
* @var string
*/
protected $form_class = '\\Drupal\\entity_browser\\Form\\EntityBrowserForm';
/**
* {@inheritdoc}
*/
public function id() {
return $this->name;
}
/**
* {@inheritdoc}
*/
public function getName() {
return $this
->get('name');
}
/**
* {@inheritdoc}
*/
public function setName($name) {
$this->name = $name;
return $this;
}
/**
* {@inheritdoc}
*/
public function getDisplay() {
return $this
->displayPluginCollection()
->get($this->display);
}
/**
* {@inheritdoc}
*/
public function setLabel($label) {
$this->label = $label;
return $this;
}
/**
* {@inheritdoc}
*/
public function setDisplay($display) {
$this->display = $display;
$this->displayPluginCollection = NULL;
$this->display_configuration = [];
$this
->getDisplay();
return $this;
}
/**
* {@inheritdoc}
*/
public function setWidgetSelector($widget_selector) {
$this->widget_selector = $widget_selector;
$this->widgetSelectorCollection = NULL;
$this->widget_selector_configuration = [];
$this
->getWidgetSelector();
return $this;
}
/**
* {@inheritdoc}
*/
public function setSelectionDisplay($selection_display) {
$this->selection_display = $selection_display;
$this->selectionDisplayCollection = NULL;
$this->selection_display_configuration = [];
$this
->getSelectionDisplay();
return $this;
}
/**
* Returns display plugin collection.
*
* @return \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection
* The tag plugin collection.
*/
protected function displayPluginCollection() {
if (!$this->displayCollection) {
$this->display_configuration['entity_browser_id'] = $this
->id();
$this->displayCollection = new DefaultSingleLazyPluginCollection(\Drupal::service('plugin.manager.entity_browser.display'), $this->display, $this->display_configuration);
}
return $this->displayCollection;
}
/**
* Returns the plugin collections used by this entity.
*
* @return \Drupal\Component\Plugin\LazyPluginCollection[]
* An array of plugin collections, keyed by the property name they use to
* store their configuration.
*/
public function getPluginCollections() {
return [
'widgets' => $this
->getWidgets(),
'widget_selector_configuration' => $this
->widgetSelectorPluginCollection(),
'display_configuration' => $this
->displayPluginCollection(),
'selection_display_configuration' => $this
->selectionDisplayPluginCollection(),
];
}
/**
* {@inheritdoc}
*/
public function getWidget($widget) {
return $this
->getWidgets()
->get($widget);
}
/**
* {@inheritdoc}
*/
public function getWidgets() {
if (!$this->widgetsCollection) {
foreach ($this->widgets as &$widget) {
$widget['settings']['entity_browser_id'] = $this
->id();
}
$this->widgetsCollection = new WidgetsCollection(\Drupal::service('plugin.manager.entity_browser.widget'), $this->widgets);
$this->widgetsCollection
->sort();
}
return $this->widgetsCollection;
}
/**
* {@inheritdoc}
*/
public function addWidget(array $configuration) {
$configuration['uuid'] = $this
->uuidGenerator()
->generate();
$this
->getWidgets()
->addInstanceId($configuration['uuid'], $configuration);
return $configuration['uuid'];
}
/**
* {@inheritdoc}
*/
public function deleteWidget(WidgetInterface $widget) {
$this
->getWidgets()
->removeInstanceId($widget
->uuid());
return $this;
}
/**
* {@inheritdoc}
*/
public function getFirstWidget() {
$instance_ids = $this
->getWidgets()
->getInstanceIds();
$instance_ids = array_filter($instance_ids, function ($id) {
return $this
->getWidget($id)
->access()
->isAllowed();
});
if (empty($instance_ids)) {
return NULL;
}
return reset($instance_ids);
}
/**
* {@inheritdoc}
*/
public function addAdditionalWidgetParameters(array $parameters) {
// TODO - this doesn't make much sense. Refactor.
$this->additional_widget_parameters += $parameters;
return $this;
}
/**
* {@inheritdoc}
*/
public function getAdditionalWidgetParameters() {
// TODO - this doesn't make much sense. Refactor.
return $this
->get('additional_widget_parameters');
}
/**
* Returns selection display plugin collection.
*
* @return \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection
* The tag plugin collection.
*/
protected function selectionDisplayPluginCollection() {
if (!$this->selectionDisplayCollection) {
$this->selection_display_configuration['entity_browser_id'] = $this
->id();
$this->selectionDisplayCollection = new DefaultSingleLazyPluginCollection(\Drupal::service('plugin.manager.entity_browser.selection_display'), $this->selection_display, $this->selection_display_configuration);
}
return $this->selectionDisplayCollection;
}
/**
* {@inheritdoc}
*/
public function getSelectionDisplay() {
return $this
->selectionDisplayPluginCollection()
->get($this->selection_display);
}
/**
* Returns widget selector plugin collection.
*
* @return \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection
* The tag plugin collection.
*/
protected function widgetSelectorPluginCollection() {
if (!$this->widgetSelectorCollection) {
$options = [];
foreach ($this
->getWidgets()
->getInstanceIds() as $id) {
$options[$id] = $this
->getWidgets()
->get($id)
->label();
}
$this->widget_selector_configuration['widget_ids'] = $options;
$this->widgetSelectorCollection = new DefaultSingleLazyPluginCollection(\Drupal::service('plugin.manager.entity_browser.widget_selector'), $this->widget_selector, $this->widget_selector_configuration);
}
return $this->widgetSelectorCollection;
}
/**
* {@inheritdoc}
*/
public function getWidgetSelector() {
return $this
->widgetSelectorPluginCollection()
->get($this->widget_selector);
}
/**
* {@inheritdoc}
*/
public function route() {
// TODO: Allow displays to define more than just path.
// See: https://www.drupal.org/node/2364193
$display = $this
->getDisplay();
if ($display instanceof DisplayRouterInterface) {
$path = $display
->path();
return new Route($path, [
'_controller' => 'Drupal\\entity_browser\\Controllers\\EntityBrowserFormController::getContentResult',
'_title_callback' => 'Drupal\\entity_browser\\Controllers\\EntityBrowserFormController::title',
'entity_browser_id' => $this
->id(),
], [
'_permission' => 'access ' . $this
->id() . ' entity browser pages',
], [
'_admin_route' => \Drupal::config('node.settings')
->get('use_admin_theme'),
]);
}
return FALSE;
}
/**
* {@inheritdoc}
*/
public function preSave(EntityStorageInterface $storage) {
parent::preSave($storage);
// Entity browser ID was added when creating. No need to save that as it can
// always be calculated.
foreach ($this->widgets as &$widget) {
unset($widget['settings']['entity_browser_id']);
}
unset($this->selection_display_configuration['entity_browser_id']);
unset($this->display_configuration['entity_browser_id']);
unset($this->widget_selector_configuration['widget_ids']);
}
/**
* Sleep method.
*
* Prevents plugin collections from being serialized and correctly serializes
* selected entities.
*/
public function __sleep() {
// Save configuration for all plugins.
$this->widgets = $this
->getWidgets()
->getConfiguration();
$this->widget_selector_configuration = $this
->widgetSelectorPluginCollection()
->getConfiguration();
$this->display_configuration = $this
->displayPluginCollection()
->getConfiguration();
$this->selection_display_configuration = $this
->selectionDisplayPluginCollection()
->getConfiguration();
return array_diff(array_keys(get_object_vars($this)), [
'widgetsCollection',
'widgetSelectorCollection',
'displayCollection',
'selectionDisplayCollection',
'selectedEntities',
]);
}
/**
* {@inheritdoc}
*/
public function postSave(EntityStorageInterface $storage, $update = TRUE) {
parent::postSave($storage, $update);
// Rebuild route information when browsers that register routes
// are created/updated.
\Drupal::service('router.builder')
->setRebuildNeeded();
}
/**
* {@inheritdoc}
*/
public static function postDelete(EntityStorageInterface $storage, array $entities) {
parent::postDelete($storage, $entities);
// Rebuild route information when browsers that register routes
// are deleted.
\Drupal::service('router.builder')
->setRebuildNeeded();
}
/**
* {@inheritdoc}
*/
public function getFormObject() {
$form_class = \Drupal::service('class_resolver')
->getInstanceFromDefinition($this->form_class);
$form_class
->setEntityBrowser($this);
return $form_class;
}
/**
* {@inheritdoc}
*/
protected function urlRouteParameters($rel) {
$uri_route_parameters = parent::urlRouteParameters($rel);
if ($rel == 'config-translation-overview') {
$uri_route_parameters['step'] = 'general';
}
return $uri_route_parameters;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CacheableDependencyTrait:: |
protected | property | Cache contexts. | |
CacheableDependencyTrait:: |
protected | property | Cache max-age. | |
CacheableDependencyTrait:: |
protected | property | Cache tags. | |
CacheableDependencyTrait:: |
protected | function | Sets cacheability; useful for value object constructors. | |
ConfigEntityBase:: |
private | property | Whether the config is being deleted by the uninstall process. | |
ConfigEntityBase:: |
protected | property | The language code of the entity's default language. | |
ConfigEntityBase:: |
protected | property | The original ID of the configuration entity. | |
ConfigEntityBase:: |
protected | property | The enabled/disabled status of the configuration entity. | 4 |
ConfigEntityBase:: |
protected | property | Third party entity settings. | |
ConfigEntityBase:: |
protected | property | Trust supplied data and not use configuration schema on save. | |
ConfigEntityBase:: |
protected | property | The UUID for this entity. | |
ConfigEntityBase:: |
protected | property | Information maintained by Drupal core about configuration. | |
ConfigEntityBase:: |
protected | function | Overrides \Drupal\Core\Entity\DependencyTrait:addDependency(). | |
ConfigEntityBase:: |
public | function |
Calculates dependencies and stores them in the dependency property. Overrides ConfigEntityInterface:: |
13 |
ConfigEntityBase:: |
public | function |
Creates a duplicate of the entity. Overrides EntityBase:: |
1 |
ConfigEntityBase:: |
public | function |
Disables the configuration entity. Overrides ConfigEntityInterface:: |
1 |
ConfigEntityBase:: |
public | function |
Enables the configuration entity. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
public | function |
Returns the value of a property. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
public | function |
Returns the cache tags that should be used to invalidate caches. Overrides EntityBase:: |
1 |
ConfigEntityBase:: |
public | function |
Gets the configuration dependency name. Overrides EntityBase:: |
|
ConfigEntityBase:: |
protected static | function | Gets the configuration manager. | |
ConfigEntityBase:: |
public | function |
Gets the configuration target identifier for the entity. Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Gets the configuration dependencies. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
public | function |
Gets the original ID. Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Gets the list of third parties that store information. Overrides ThirdPartySettingsInterface:: |
|
ConfigEntityBase:: |
public | function |
Gets the value of a third-party setting. Overrides ThirdPartySettingsInterface:: |
|
ConfigEntityBase:: |
public | function |
Gets all third-party settings of a given module. Overrides ThirdPartySettingsInterface:: |
|
ConfigEntityBase:: |
protected | function | Gets the typed config manager. | |
ConfigEntityBase:: |
public | function |
Gets whether on not the data is trusted. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
protected static | function |
Override to never invalidate the individual entities' cache tags; the
config system already invalidates them. Overrides EntityBase:: |
|
ConfigEntityBase:: |
protected | function |
Override to never invalidate the entity's cache tag; the config system
already invalidates it. Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Checks whether this entity is installable. Overrides ConfigEntityInterface:: |
2 |
ConfigEntityBase:: |
public | function |
Overrides Entity::isNew(). Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Returns whether this entity is being changed during the uninstall process. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
public | function |
Deprecated way of generating a link to the entity. See toLink(). Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Informs the entity that entities it depends on will be deleted. Overrides ConfigEntityInterface:: |
7 |
ConfigEntityBase:: |
public static | function |
Acts on entities before they are deleted and before hooks are invoked. Overrides EntityBase:: |
8 |
ConfigEntityBase:: |
public | function |
Saves an entity permanently. Overrides EntityBase:: |
1 |
ConfigEntityBase:: |
public | function |
Sets the value of a property. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
public | function |
Sets the original ID. Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Sets the status of the configuration entity. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
public | function |
Sets the value of a third-party setting. Overrides ThirdPartySettingsInterface:: |
|
ConfigEntityBase:: |
public | function | ||
ConfigEntityBase:: |
public static | function | Helper callback for uasort() to sort configuration entities by weight and label. | 6 |
ConfigEntityBase:: |
public | function |
Returns whether the configuration entity is enabled. Overrides ConfigEntityInterface:: |
4 |
ConfigEntityBase:: |
public | function |
Gets an array of all property values. Overrides EntityBase:: |
2 |
ConfigEntityBase:: |
public | function |
Gets the URL object for the entity. Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Sets that the data should be trusted. Overrides ConfigEntityInterface:: |
|
ConfigEntityBase:: |
public | function |
Unsets a third-party setting. Overrides ThirdPartySettingsInterface:: |
|
ConfigEntityBase:: |
public | function |
Gets the public URL for this entity. Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Gets the URL object for the entity. Overrides EntityBase:: |
|
ConfigEntityBase:: |
public | function |
Constructs an Entity object. Overrides EntityBase:: |
10 |
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | Aliased as: traitSleep | 1 |
DependencySerializationTrait:: |
public | function | 2 | |
DependencyTrait:: |
protected | property | The object's dependencies. | |
DependencyTrait:: |
protected | function | Adds multiple dependencies. | |
DependencyTrait:: |
protected | function | Adds a dependency. Aliased as: addDependencyTrait | |
EntityBase:: |
protected | property | Boolean indicating whether the entity should be forced to be new. | |
EntityBase:: |
protected | property | The entity type. | |
EntityBase:: |
protected | property | A typed data object wrapping this entity. | |
EntityBase:: |
public | function |
Checks data value access. Overrides AccessibleInterface:: |
1 |
EntityBase:: |
public | function |
Gets the bundle of the entity. Overrides EntityInterface:: |
1 |
EntityBase:: |
public static | function |
Constructs a new entity object, without permanently saving it. Overrides EntityInterface:: |
|
EntityBase:: |
public | function |
Deletes an entity permanently. Overrides EntityInterface:: |
2 |
EntityBase:: |
public | function |
Enforces an entity to be new. Overrides EntityInterface:: |
|
EntityBase:: |
protected | function | Gets the entity manager. | |
EntityBase:: |
protected | function | Gets the entity type bundle info service. | |
EntityBase:: |
protected | function | Gets the entity type manager. | |
EntityBase:: |
public | function |
The cache contexts associated with this object. Overrides CacheableDependencyTrait:: |
|
EntityBase:: |
public | function |
The maximum age for which this object may be cached. Overrides CacheableDependencyTrait:: |
|
EntityBase:: |
public | function |
The cache tags associated with this object. Overrides CacheableDependencyTrait:: |
|
EntityBase:: |
public | function |
Gets the key that is used to store configuration dependencies. Overrides EntityInterface:: |
|
EntityBase:: |
public | function |
Gets the entity type definition. Overrides EntityInterface:: |
|
EntityBase:: |
public | function |
Gets the ID of the type of the entity. Overrides EntityInterface:: |
|
EntityBase:: |
protected | function | The list cache tags to invalidate for this entity. | |
EntityBase:: |
public | function |
Gets a typed data object for this entity object. Overrides EntityInterface:: |
|
EntityBase:: |
public | function |
Indicates if a link template exists for a given key. Overrides EntityInterface:: |
|
EntityBase:: |
public | function |
Gets the label of the entity. Overrides EntityInterface:: |
6 |
EntityBase:: |
public | function |
Gets the language of the entity. Overrides EntityInterface:: |
1 |
EntityBase:: |
protected | function | Gets the language manager. | |
EntityBase:: |
protected | function | Gets an array link templates. | 1 |
EntityBase:: |
public static | function |
Loads an entity. Overrides EntityInterface:: |
|
EntityBase:: |
public static | function |
Loads one or more entities. Overrides EntityInterface:: |
|
EntityBase:: |
public | function |
Acts on a created entity before hooks are invoked. Overrides EntityInterface:: |
4 |
EntityBase:: |
public static | function |
Acts on loaded entities. Overrides EntityInterface:: |
2 |
EntityBase:: |
public static | function |
Changes the values of an entity before it is created. Overrides EntityInterface:: |
5 |
EntityBase:: |
public | function |
Gets a list of entities referenced by this entity. Overrides EntityInterface:: |
1 |
EntityBase:: |
public | function |
Generates the HTML for a link to this entity. Overrides EntityInterface:: |
|
EntityBase:: |
public | function |
Gets a list of URI relationships supported by this entity. Overrides EntityInterface:: |
|
EntityBase:: |
public | function |
Gets the entity UUID (Universally Unique Identifier). Overrides EntityInterface:: |
1 |
EntityBase:: |
protected | function | Gets the UUID generator. | |
EntityBrowser:: |
protected | property | Additional widget parameters. | |
EntityBrowser:: |
public | property | The display plugin id. | |
EntityBrowser:: |
protected | property | Display lazy plugin collection. | |
EntityBrowser:: |
public | property | The display plugin configuration. | |
EntityBrowser:: |
protected | property | Name of the form class. | |
EntityBrowser:: |
public | property | The entity browser label. | |
EntityBrowser:: |
public | property | The name of the entity browser. | |
EntityBrowser:: |
protected | property | Selection display plugin collection. | |
EntityBrowser:: |
public | property | The selection display plugin ID. | |
EntityBrowser:: |
public | property | The selection display plugin configuration. | |
EntityBrowser:: |
protected | property | The array of widgets for this entity browser. | |
EntityBrowser:: |
protected | property | Holds the collection of widgets that are used by this entity browser. | |
EntityBrowser:: |
protected | property | Widget selector plugin collection. | |
EntityBrowser:: |
public | property | The widget selector plugin ID. | |
EntityBrowser:: |
public | property | The widget selector plugin configuration. | |
EntityBrowser:: |
public | function |
Adds paramterers that will be passed to the widget. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
public | function |
Saves a widget for this entity browser. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
public | function |
Deletes a widget from this entity browser. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
protected | function | Returns display plugin collection. | |
EntityBrowser:: |
public | function |
Gets additional parameters that will be passed to the widget. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
public | function |
Returns the display. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
public | function |
Gets first widget based on weights. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
public | function |
Gets entity browser form object. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
public | function |
Gets the entity browser name. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
public | function |
Returns the plugin collections used by this entity. Overrides ObjectWithPluginCollectionInterface:: |
|
EntityBrowser:: |
public | function |
Returns the selection display. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
public | function |
Returns a specific widget. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
public | function |
Returns the widgets for this entity browser. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
public | function |
Returns the widget selector. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
public | function |
Gets the identifier. Overrides EntityBase:: |
|
EntityBrowser:: |
public static | function |
Acts on deleted entities before the delete hook is invoked. Overrides EntityBase:: |
|
EntityBrowser:: |
public | function |
Acts on a saved entity before the insert or update hook is invoked. Overrides EntityBase:: |
|
EntityBrowser:: |
public | function |
Acts on an entity before the presave hook is invoked. Overrides ConfigEntityBase:: |
|
EntityBrowser:: |
public | function |
Gets route that matches this display. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
protected | function | Returns selection display plugin collection. | |
EntityBrowser:: |
public | function |
Sets the id of the display plugin. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
public | function |
Sets the label of the entity browser. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
public | function |
Sets the name of the entity browser. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
public | function |
Sets the id of the selection display plugin. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
public | function |
Sets the id of the widget selector plugin. Overrides EntityBrowserInterface:: |
|
EntityBrowser:: |
protected | function |
Gets an array of placeholders for this entity. Overrides EntityBase:: |
|
EntityBrowser:: |
protected | function | Returns widget selector plugin collection. | |
EntityBrowser:: |
public | function |
Sleep method. Overrides ConfigEntityBase:: |
|
PluginDependencyTrait:: |
protected | function | Calculates and adds dependencies of a specific plugin instance. | 1 |
PluginDependencyTrait:: |
protected | function | Calculates and returns dependencies of a specific plugin instance. | |
PluginDependencyTrait:: |
protected | function | Wraps the module handler. | 1 |
PluginDependencyTrait:: |
protected | function | Wraps the theme handler. | 1 |
RefinableCacheableDependencyTrait:: |
public | function | 1 | |
RefinableCacheableDependencyTrait:: |
public | function | ||
RefinableCacheableDependencyTrait:: |
public | function | ||
RefinableCacheableDependencyTrait:: |
public | function | ||
SynchronizableEntityTrait:: |
protected | property | Whether this entity is being created, updated or deleted through a synchronization process. | |
SynchronizableEntityTrait:: |
public | function | ||
SynchronizableEntityTrait:: |
public | function |