SharedTempStore.php

Same filename in this branch
  1. 8.9.x core/lib/Drupal/Core/TempStore/SharedTempStore.php
Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/TempStore/SharedTempStore.php
  2. 10 core/lib/Drupal/Core/TempStore/SharedTempStore.php
  3. 11.x core/lib/Drupal/Core/TempStore/SharedTempStore.php

Namespace

Drupal\user

File

core/modules/user/src/SharedTempStore.php

View source
<?php

namespace Drupal\user;

use Drupal\Core\TempStore\SharedTempStore as CoreSharedTempStore;
@trigger_error('\\Drupal\\user\\SharedTempStore is scheduled for removal in Drupal 9.0.0. Use \\Drupal\\Core\\TempStore\\SharedTempStore instead. See https://www.drupal.org/node/2935639.', E_USER_DEPRECATED);

/**
 * In order to preserve BC alias the core exception.
 */
if (!class_exists('\\Drupal\\user\\TempStoreException')) {
    class_alias('\\Drupal\\Core\\TempStore\\TempStoreException', '\\Drupal\\user\\TempStoreException');
}

/**
 * Stores and retrieves temporary data for a given owner.
 *
 * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0.
 *   Use \Drupal\Core\TempStore\SharedTempStore instead.
 *
 * @see \Drupal\Core\TempStore\SharedTempStore
 * @see https://www.drupal.org/node/2935639
 */
class SharedTempStore extends CoreSharedTempStore {

}

Classes

Title Deprecated Summary
SharedTempStore

in drupal:8.5.0 and is removed from drupal:9.0.0. Use \Drupal\Core\TempStore\SharedTempStore instead.

Stores and retrieves temporary data for a given owner.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.