AccountSettingsForm

Configure user settings for this site. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTraitclass \Drupal\user\AccountSettingsForm File core/modules/user/src/AccountSettingsForm.php, line 15 Namespace Drupal\user Members Name Modifiers

DatabaseBackend::invalidateMultiple

public DatabaseBackend::invalidateMultiple(array $cids) Marks cache items as invalid. Invalid items may be returned in later calls to get(), if the $allow_invalid argument is TRUE. Parameters string[] $cids: An array of cache IDs to invalidate. Overrides CacheBackendInterface::invalidateMultiple See also \Drupal\Core\Cache\CacheBackendInterface::deleteMultiple() \Drupal\Core\Cache\CacheBackendInterface::invalidate() \Drupal\Core\Cache\CacheBackendInterface::invalidateAll() File core/lib/Drupa

ConfigImporter::$validated

Indicates changes to import have been validated. Type: bool File core/lib/Drupal/Core/Config/ConfigImporter.php, line 106 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected $validated;

ModuleHandler

Class that manages modules in a Drupal installation. Hierarchy class \Drupal\Core\Extension\ModuleHandler implements ModuleHandlerInterface File core/lib/Drupal/Core/Extension/ModuleHandler.php, line 12 Namespace Drupal\Core\Extension Members Name Modifiers Type Description ModuleHandler::$alterFunctions protected property List of alter hook implementations keyed by hook name(s). ModuleHandler::$cacheBackend protected property Cache backend for storing module hoo

Select::addField

public Select::addField($table_alias, $field, $alias = NULL) Adds a field to the list to be SELECTed. Parameters $table_alias: The name of the table from which the field comes, as an alias. Generally you will want to use the return value of join() here to ensure that it is valid. $field: The name of the field. $alias: The alias for this field. If not specified, one will be generated automatically based on the $table_alias and $field. The alias will be checked for uniqueness, so the requested a

QueueWorker

Declare a worker class for processing a queue item. Worker plugins are used by some queues for processing the individual items in the queue. In that case, the ID of the worker plugin needs to match the machine name of a queue, so that you can retrieve the queue back end by calling \Drupal\Core\Queue\QueueFactory::get($plugin_id). \Drupal\Core\Cron::processQueues() processes queues that use workers; they can also be processed outside of the cron process. Some queues do not use worker plugins: yo

history_cron

history_cron() Implements hook_cron(). File core/modules/history/history.module, line 126 Records which users have read which content. Code function history_cron() { db_delete('history') ->condition('timestamp', HISTORY_READ_LIMIT, '<') ->execute(); }

File::url

public File::url($rel = 'canonical', $options = array()) Overrides Entity::url See also file_url_transform_relative() File core/modules/file/src/Entity/File.php, line 73 Class File Defines the file entity class. Namespace Drupal\file\Entity Code public function url($rel = 'canonical', $options = array()) { return file_create_url($this->getFileUri()); }

FinalMissingContentSubscriber::getSubscribedEvents

public static FinalMissingContentSubscriber::getSubscribedEvents() Returns an array of event names this subscriber wants to listen to. The array keys are event names and the value can be: The method name to call (priority defaults to 0) An array composed of the method name to call and the priority An array of arrays composed of the method names to call and respective priorities, or 0 if unset For instance: array('eventName' => 'methodName') array('eventName' => array('methodName', $pr

EntityDisplayModeListBuilder::$entityTypes

All entity types. Type: \Drupal\Core\Entity\EntityTypeInterface[] File core/modules/field_ui/src/EntityDisplayModeListBuilder.php, line 24 Class EntityDisplayModeListBuilder Defines a class to build a listing of view mode entities. Namespace Drupal\field_ui Code protected $entityTypes;