FormInterface::getFormId

public FormInterface::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. File core/lib/Drupal/Core/Form/FormInterface.php, line 18 Class FormInterface Provides an interface for a Form. Namespace Drupal\Core\Form Code public function getFormId();

FilterController::getLabel

public FilterController::getLabel(FilterFormatInterface $filter_format) Gets the label of a filter format. Parameters \Drupal\filter\FilterFormatInterface $filter_format: The filter format. Return value string The label of the filter format. File core/modules/filter/src/Controller/FilterController.php, line 45 Class FilterController Controller routines for filter routes. Namespace Drupal\filter\Controller Code public function getLabel(FilterFormatInterface $filter_format) { return

ContentTranslationManager::loadContentLanguageSettings

protected ContentTranslationManager::loadContentLanguageSettings($entity_type_id, $bundle) Loads a content language config entity based on the entity type and bundle. Parameters string $entity_type_id: ID of the entity type. string $bundle: Bundle name. Return value \Drupal\language\Entity\ContentLanguageSettings The content language config entity if one exists. Otherwise, returns default values. File core/modules/content_translation/src/ContentTranslationManager.php, line 120 Class Conte

Entity::getCacheContexts

public Entity::getCacheContexts() The cache contexts associated with this object. These identify a specific variation/representation of the object. Cache contexts are tokens: placeholders that are converted to cache keys by the @cache_contexts_manager service. The replacement value depends on the request context (the current URL, language, and so on). They're converted before storing an object in cache. Return value string[] An array of cache context tokens, used to generate a cache ID. Overri

ContentTranslationRouteSubscriber

Subscriber for entity translation routes. Hierarchy class \Drupal\Core\Routing\RouteSubscriberBase implements EventSubscriberInterfaceclass \Drupal\content_translation\Routing\ContentTranslationRouteSubscriber File core/modules/content_translation/src/Routing/ContentTranslationRouteSubscriber.php, line 14 Namespace Drupal\content_translation\Routing Members Name Modifiers Type Description ContentTranslationRouteSubscriber::$contentTranslationManager protected property T

ReverseProxyMiddleware::$settings

The site settings. Type: \Drupal\Core\Site\Settings File core/lib/Drupal/Core/StackMiddleware/ReverseProxyMiddleware.php, line 26 Class ReverseProxyMiddleware Provides support for reverse proxies. Namespace Drupal\Core\StackMiddleware Code protected $settings;

ConfigEntityInterface::isInstallable

public ConfigEntityInterface::isInstallable() Checks whether this entity is installable. For example, a default view might not be installable if the base table doesn't exist. @retun bool TRUE if the entity is installable, FALSE otherwise. File core/lib/Drupal/Core/Config/Entity/ConfigEntityInterface.php, line 195 Class ConfigEntityInterface Defines a common interface for configuration entities. Namespace Drupal\Core\Config\Entity Code public function isInstallable();

KeyValueEntityStorage::doLoadMultiple

public KeyValueEntityStorage::doLoadMultiple(array $ids = NULL) Performs storage-specific loading of entities. Override this method to add custom functionality directly after loading. This is always called, while self::postLoad() is only called when there are actual results. Parameters array|null $ids: (optional) An array of entity IDs, or NULL to load all entities. Return value \Drupal\Core\Entity\EntityInterface[] Associative array of entities, keyed on the entity ID. Overrides EntityStorag

ContentEntityNullStorage::doLoadMultiple

protected ContentEntityNullStorage::doLoadMultiple(array $ids = NULL) Performs storage-specific loading of entities. Override this method to add custom functionality directly after loading. This is always called, while self::postLoad() is only called when there are actual results. Parameters array|null $ids: (optional) An array of entity IDs, or NULL to load all entities. Return value \Drupal\Core\Entity\EntityInterface[] Associative array of entities, keyed on the entity ID. Overrides Entity

SqlContentEntityStorageSchema::onEntityTypeCreate

public SqlContentEntityStorageSchema::onEntityTypeCreate(EntityTypeInterface $entity_type) Reacts to the creation of the entity type. Parameters \Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type being created. Overrides EntityTypeListenerInterface::onEntityTypeCreate File core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php, line 259 Class SqlContentEntityStorageSchema Defines a schema handler that supports revisionable, translatable entities. Namespace