Undefined

Undefined configuration element. Hierarchy class \Drupal\Core\TypedData\TypedData implements PluginInspectionInterface, TypedDataInterface uses StringTranslationTrait, TypedDataTraitclass \Drupal\Core\Config\Schema\Elementclass \Drupal\Core\Config\Schema\Undefined File core/lib/Drupal/Core/Config/Schema/Undefined.php, line 8 Namespace Drupal\Core\Config\Schema Members Name Modifiers Type Description Element::$value protected property The configuration value. Element:

entity_render_cache_clear

entity_render_cache_clear() Clears the entity render cache for all entity types. File core/includes/entity.inc, line 15 Entity API for handling entities like nodes or users. Code function entity_render_cache_clear() { $entity_manager = Drupal::entityManager(); foreach ($entity_manager->getDefinitions() as $entity_type => $info) { if ($entity_manager->hasHandler($entity_type, 'view_builder')) { $entity_manager->getViewBuilder($entity_type)->resetCache(); } }

ImageToolkitOperationManager::$logger

A logger instance. Type: \Psr\Log\LoggerInterface File core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationManager.php, line 28 Class ImageToolkitOperationManager Manages toolkit operation plugins. Namespace Drupal\Core\ImageToolkit Code protected $logger;

ConfigSync::$renderer

The renderer. Type: \Drupal\Core\Render\RendererInterface File core/modules/config/src/Form/ConfigSync.php, line 102 Class ConfigSync Construct the storage changes in a configuration synchronization form. Namespace Drupal\config\Form Code protected $renderer;

MemoryBackend::garbageCollection

public MemoryBackend::garbageCollection() Performs garbage collection on a cache bin. The backend may choose to delete expired or invalidated items. Overrides CacheBackendInterface::garbageCollection File core/lib/Drupal/Core/Cache/MemoryBackend.php, line 189 Class MemoryBackend Defines a memory cache implementation. Namespace Drupal\Core\Cache Code public function garbageCollection() { }

QueryBase::sort

public QueryBase::sort($field, $direction = 'ASC', $langcode = NULL) Parameters $field: Name of a field. string $direction: $langcode: Language code (optional). Return value \Drupal\Core\Entity\Query\QueryInterface The called object. Overrides QueryInterface::sort File core/lib/Drupal/Core/Entity/Query/QueryBase.php, line 225 Class QueryBase The base entity query class. Namespace Drupal\Core\Entity\Query Code public function sort($field, $direction = 'ASC', $langcode = NULL) { $thi

ClassResolverInterface

Provides an interface to get a instance of a class with dependency injection. Hierarchy interface \Drupal\Core\DependencyInjection\ClassResolverInterface File core/lib/Drupal/Core/DependencyInjection/ClassResolverInterface.php, line 8 Namespace Drupal\Core\DependencyInjection Members Name Modifiers Type Description ClassResolverInterface::getInstanceFromDefinition public function Returns a class instance with a given class definition.

NoBigPipeRouteAlterSubscriber

Sets the '_no_big_pipe' option on select routes. Hierarchy class \Drupal\big_pipe\EventSubscriber\NoBigPipeRouteAlterSubscriber implements EventSubscriberInterface File core/modules/big_pipe/src/EventSubscriber/NoBigPipeRouteAlterSubscriber.php, line 12 Namespace Drupal\big_pipe\EventSubscriber Members Name Modifiers Type Description NoBigPipeRouteAlterSubscriber::getSubscribedEvents static function Returns an array of event names this subscriber wants to listen to. Over

Renderer::hasRenderContext

public Renderer::hasRenderContext() Checks whether a render context is active. This is useful only in very specific situations to determine whether the system is already capable of collecting bubbleable metadata. Normally it should not be necessary to be concerned about this. Return value bool TRUE if the renderer has a render context active, FALSE otherwise. Overrides RendererInterface::hasRenderContext File core/lib/Drupal/Core/Render/Renderer.php, line 561 Class Renderer Turns a render

Shortcut::postSave

public Shortcut::postSave(EntityStorageInterface $storage, $update = TRUE) Acts on a saved entity before the insert or update hook is invoked. Used after the entity is saved, but before invoking the insert or update hook. Note that in case of translatable content entities this callback is only fired on their current translation. It is up to the developer to iterate over all translations if needed. Parameters \Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object. bool $