function PrivateTempStoreFactory::get
Same name in this branch
- 8.9.x core/lib/Drupal/Core/TempStore/PrivateTempStoreFactory.php \Drupal\Core\TempStore\PrivateTempStoreFactory::get()
Same name in other branches
- 9 core/lib/Drupal/Core/TempStore/PrivateTempStoreFactory.php \Drupal\Core\TempStore\PrivateTempStoreFactory::get()
- 10 core/lib/Drupal/Core/TempStore/PrivateTempStoreFactory.php \Drupal\Core\TempStore\PrivateTempStoreFactory::get()
- 11.x core/lib/Drupal/Core/TempStore/PrivateTempStoreFactory.php \Drupal\Core\TempStore\PrivateTempStoreFactory::get()
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.
Overrides PrivateTempStoreFactory::get
File
-
core/
modules/ user/ src/ PrivateTempStoreFactory.php, line 30
Class
- PrivateTempStoreFactory
- Creates a PrivateTempStore object for a given collection.
Namespace
Drupal\userCode
public function get($collection) {
// Store the data for this collection in the database.
$storage = $this->storageFactory
->get("user.private_tempstore.{$collection}");
return new PrivateTempStore($storage, $this->lockBackend, $this->currentUser, $this->requestStack, $this->expire);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.