class UserServiceProvider in Drupal 8
Hierarchy
- class \Drupal\user\UserServiceProvider implements ServiceModifierInterface
Expanded class hierarchy of UserServiceProvider
File
- core/
modules/ user/ src/ UserServiceProvider.php, line 8
Namespace
Drupal\userView source
class UserServiceProvider implements ServiceModifierInterface {
/**
* {@inheritdoc}
*/
public function alter(ContainerBuilder $container) {
if ($container
->hasParameter('user.tempstore.expire')) {
@trigger_error('The container parameter "user.tempstore.expire" is deprecated. Use "tempstore.expire" instead. See https://www.drupal.org/node/2935639.', E_USER_DEPRECATED);
$container
->setParameter('tempstore.expire', $container
->getParameter('user.tempstore.expire'));
}
else {
// Ensure the user.tempstore.expire parameter is set to the same value
// for modules that still rely on it.
$container
->setParameter('user.tempstore.expire', $container
->getParameter('tempstore.expire'));
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
UserServiceProvider:: |
public | function |
Modifies existing service definitions. Overrides ServiceModifierInterface:: |