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

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;

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(); } }

template_preprocess_details

template_preprocess_details(&$variables) Prepares variables for details element templates. Default template: details.html.twig. Parameters array $variables: An associative array containing: element: An associative array containing the properties of the element. Properties used: #attributes, #children, #open, #description, #id, #title, #value, #optional. File core/includes/form.inc, line 241 Functions for form and batch generation and processing. Code function template_preprocess_detai

REQUIREMENT_OK

Requirement severity -- Requirement successfully met. File core/includes/install.inc, line 24 API functions for installing modules and themes. Code const REQUIREMENT_OK = 0;

Role::$id

The machine name of this role. Type: string File core/modules/user/src/Entity/Role.php, line 54 Class Role Defines the user role entity class. Namespace Drupal\user\Entity Code protected $id;

Drupal::currentUser

public static Drupal::currentUser() Gets the current active user. Return value \Drupal\Core\Session\AccountProxyInterface File core/lib/Drupal.php, line 246 Contains \Drupal. Class Drupal Static Service Container wrapper. Code public static function currentUser() { return static::getContainer()->get('current_user'); }

drupal_load_updates

drupal_load_updates() Loads .install files for installed modules to initialize the update system. File core/includes/install.inc, line 79 API functions for installing modules and themes. Code function drupal_load_updates() { foreach (drupal_get_installed_schema_version(NULL, FALSE, TRUE) as $module => $schema_version) { if ($schema_version > -1) { module_load_install($module); } } }

ActionAdminManageForm

Provides a configuration form for configurable actions. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\action\Form\ActionAdminManageForm File core/modules/action/src/Form/ActionAdminManageForm.php, line 14 Namespace Drupal\action\Form Members Name Modifiers Type Description

entity_delete_multiple

entity_delete_multiple($entity_type, array $ids) Deletes multiple entities permanently. $storage_handler = \Drupal::entityTypeManager()->getStorage($entity_type); $entities = $storage_handler->loadMultiple($ids); $storage_handler->delete($entities); Parameters string $entity_type: The type of the entity. array $ids: An array of entity IDs of the entities to delete. Deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0. Use the entity storage's delete() method to delete