ProcessedText

Provides a processed text render element. Plugin annotation @RenderElement("processed_text") Hierarchy class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterfaceclass \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, StringTranslationTraitclass \Drupal\Core\Render\Element\RenderElement implements ElementInterfaceclass \Drupal\filter\Element\ProcessedText File core/modules/filter/src/Element/ProcessedText.php, line 17 N

PrivateTempStoreFactory::__construct

PrivateTempStoreFactory::__construct(KeyValueExpirableFactoryInterface $storage_factory, LockBackendInterface $lock_backend, AccountProxyInterface $current_user, RequestStack $request_stack, $expire = 604800) Constructs a Drupal\user\PrivateTempStoreFactory object. Parameters \Drupal\Core\KeyValueStore\KeyValueExpirableFactoryInterface $storage_factory: The key/value store factory. \Drupal\Core\Lock\LockBackendInterface $lock_backend: The lock object used for this data. \Drupal\Core\Session\Ac

PrivateTempStoreFactory::get

PrivateTempStoreFactory::get($collection) Creates a PrivateTempStore. Parameters string $collection: The collection name to use for this key/value store. This is typically a shared namespace or module name, e.g. 'views', 'entity', etc. Return value \Drupal\user\PrivateTempStore An instance of the key/value store. File core/modules/user/src/PrivateTempStoreFactory.php, line 82 Class PrivateTempStoreFactory Creates a PrivateTempStore object for a given collection. Namespace Drupal\user

PrivateTempStoreFactory::$storageFactory

The storage factory creating the backend to store the data. Type: \Drupal\Core\KeyValueStore\KeyValueExpirableFactoryInterface File core/modules/user/src/PrivateTempStoreFactory.php, line 20 Class PrivateTempStoreFactory Creates a PrivateTempStore object for a given collection. Namespace Drupal\user Code protected $storageFactory;

PrivateTempStoreFactory::$requestStack

The request stack. Type: \Symfony\Component\HttpFoundation\RequestStack File core/modules/user/src/PrivateTempStoreFactory.php, line 41 Class PrivateTempStoreFactory Creates a PrivateTempStore object for a given collection. Namespace Drupal\user Code protected $requestStack;

PrivateTempStoreFactory::$lockBackend

The lock object used for this data. Type: \Drupal\Core\Lock\LockBackendInterface $lockBackend File core/modules/user/src/PrivateTempStoreFactory.php, line 27 Class PrivateTempStoreFactory Creates a PrivateTempStore object for a given collection. Namespace Drupal\user Code protected $lockBackend;

PrivateTempStoreFactory::$expire

The time to live for items in seconds. Type: int File core/modules/user/src/PrivateTempStoreFactory.php, line 48 Class PrivateTempStoreFactory Creates a PrivateTempStore object for a given collection. Namespace Drupal\user Code protected $expire;

PrivateTempStoreFactory::$currentUser

The current user. Type: \Drupal\Core\Session\AccountProxyInterface File core/modules/user/src/PrivateTempStoreFactory.php, line 34 Class PrivateTempStoreFactory Creates a PrivateTempStore object for a given collection. Namespace Drupal\user Code protected $currentUser;

PrivateTempStoreFactory

Creates a PrivateTempStore object for a given collection. Hierarchy class \Drupal\user\PrivateTempStoreFactory File core/modules/user/src/PrivateTempStoreFactory.php, line 13 Namespace Drupal\user Members Name Modifiers Type Description PrivateTempStoreFactory::$currentUser protected property The current user. PrivateTempStoreFactory::$expire protected property The time to live for items in seconds. PrivateTempStoreFactory::$lockBackend protected property

PrivateTempStore::__construct

public PrivateTempStore::__construct(KeyValueStoreExpirableInterface $storage, LockBackendInterface $lock_backend, AccountProxyInterface $current_user, RequestStack $request_stack, $expire = 604800) Constructs a new object for accessing data from a key/value store. Parameters KeyValueStoreExpirableInterface $storage: The key/value storage object used for this data. Each storage object represents a particular collection of data and will contain any number of key/value pairs. \Drupal\Core\Lock\L