2013-04-09 04:32:49 +00:00
|
|
|
services:
|
|
|
|
access_check.permission:
|
|
|
|
class: Drupal\user\Access\PermissionAccessCheck
|
|
|
|
tags:
|
2014-01-01 00:06:09 +00:00
|
|
|
- { name: access_check, applies_to: _permission }
|
2013-04-09 04:32:49 +00:00
|
|
|
access_check.user.register:
|
|
|
|
class: Drupal\user\Access\RegisterAccessCheck
|
|
|
|
tags:
|
2014-01-01 00:06:09 +00:00
|
|
|
- { name: access_check, applies_to: _access_user_register }
|
2013-05-03 17:17:54 +00:00
|
|
|
access_check.user.role:
|
|
|
|
class: Drupal\user\Access\RoleAccessCheck
|
|
|
|
tags:
|
2014-01-01 00:06:09 +00:00
|
|
|
- { name: access_check, applies_to: _role }
|
2013-05-26 02:46:09 +00:00
|
|
|
access_check.user.login_status:
|
|
|
|
class: Drupal\user\Access\LoginStatusCheck
|
|
|
|
tags:
|
2014-01-01 00:06:09 +00:00
|
|
|
- { name: access_check, applies_to: _user_is_logged_in }
|
2015-04-27 08:24:40 +00:00
|
|
|
user.authentication.cookie:
|
2015-04-18 10:06:53 +00:00
|
|
|
class: Drupal\user\Authentication\Provider\Cookie
|
Issue #2946 by chx, michaellenahan, jcnventura, quietone, ifrik, wengerk, AaronBauman, salvis, pplantinga, sun, David_Rothstein, tatarbj, alexpott, Wim Leers, iMiksu, vijaycs85, anoopjohn, nedjo, Owen Barton, bjaspan, soxofaan, Gogowitsch, raman.b, robeano, deepakrmklm, bleen, xmacinfo, catch, beginner, dww, Gábor Hojtsy, webchick, Dries, larowlan, snufkin, RobRoy, bdragon, wizonesolutions, Lendude, sokru: Login fails and no warning is issued if cookies are not enabled
2021-06-25 04:37:40 +00:00
|
|
|
arguments: ['@session_configuration', '@database', '@messenger']
|
Issue #1289536 by ParisLiakos, RobLoach, Crell, larowlan, fgm, pounard, Pancho, dawehner, scor, tim.plunkett, alexpott, socketwench: Switch Watchdog to a PSR-3 logging framework.
2014-05-22 09:38:46 +00:00
|
|
|
tags:
|
2015-04-27 08:24:40 +00:00
|
|
|
- { name: authentication_provider, provider_id: 'cookie', priority: 0, global: TRUE }
|
Issue #2946 by chx, michaellenahan, jcnventura, quietone, ifrik, wengerk, AaronBauman, salvis, pplantinga, sun, David_Rothstein, tatarbj, alexpott, Wim Leers, iMiksu, vijaycs85, anoopjohn, nedjo, Owen Barton, bjaspan, soxofaan, Gogowitsch, raman.b, robeano, deepakrmklm, bleen, xmacinfo, catch, beginner, dww, Gábor Hojtsy, webchick, Dries, larowlan, snufkin, RobRoy, bdragon, wizonesolutions, Lendude, sokru: Login fails and no warning is issued if cookies are not enabled
2021-06-25 04:37:40 +00:00
|
|
|
- { name: event_subscriber }
|
2013-04-09 04:32:49 +00:00
|
|
|
user.data:
|
|
|
|
class: Drupal\user\UserData
|
|
|
|
arguments: ['@database']
|
2014-08-04 11:54:30 +00:00
|
|
|
tags:
|
|
|
|
- { name: backend_overridable }
|
2013-06-13 22:53:50 +00:00
|
|
|
user_maintenance_mode_subscriber:
|
|
|
|
class: Drupal\user\EventSubscriber\MaintenanceModeSubscriber
|
2014-07-07 13:03:55 +00:00
|
|
|
arguments: ['@maintenance_mode', '@current_user']
|
2013-06-13 22:53:50 +00:00
|
|
|
tags:
|
|
|
|
- { name: event_subscriber }
|
2014-10-24 11:21:06 +00:00
|
|
|
user_access_denied_subscriber:
|
|
|
|
class: Drupal\user\EventSubscriber\AccessDeniedSubscriber
|
2018-10-26 05:22:25 +00:00
|
|
|
arguments: ['@current_user']
|
2014-10-24 11:21:06 +00:00
|
|
|
tags:
|
|
|
|
- { name: event_subscriber }
|
2015-04-18 10:06:53 +00:00
|
|
|
user_last_access_subscriber:
|
|
|
|
class: Drupal\user\EventSubscriber\UserRequestSubscriber
|
2019-01-11 14:13:39 +00:00
|
|
|
arguments: ['@current_user', '@entity_type.manager']
|
2015-04-18 10:06:53 +00:00
|
|
|
tags:
|
|
|
|
- { name: event_subscriber }
|
2013-12-17 11:03:15 +00:00
|
|
|
theme.negotiator.admin_theme:
|
|
|
|
class: Drupal\user\Theme\AdminNegotiator
|
2019-01-11 14:13:39 +00:00
|
|
|
arguments: ['@current_user', '@config.factory', '@entity_type.manager', '@router.admin_context']
|
2013-12-17 11:03:15 +00:00
|
|
|
tags:
|
|
|
|
- { name: theme_negotiator, priority: -40 }
|
2014-03-10 10:59:14 +00:00
|
|
|
user.auth:
|
|
|
|
class: Drupal\user\UserAuth
|
2019-01-11 14:13:39 +00:00
|
|
|
arguments: ['@entity_type.manager', '@password']
|
2014-08-27 08:05:25 +00:00
|
|
|
user.permissions:
|
|
|
|
class: Drupal\user\PermissionHandler
|
2014-09-09 19:11:27 +00:00
|
|
|
arguments: ['@module_handler', '@string_translation', '@controller_resolver']
|
2021-10-25 14:11:07 +00:00
|
|
|
user.route_subscriber:
|
|
|
|
class: Drupal\user\Routing\RouteSubscriber
|
|
|
|
arguments: ['@entity_type.manager']
|
|
|
|
tags:
|
|
|
|
- { name: event_subscriber }
|
Issue #2354889 by larowlan, dawehner, lauriii, Berdir, catch, martin107, pfrenssen, EclipseGc, Fabianx, Wim Leers, dsnopek, jibran, tim.plunkett, andypost: Make block context faster by removing onBlock event and replace it with loading from a ContextManager
2015-07-08 12:01:20 +00:00
|
|
|
user.current_user_context:
|
|
|
|
class: Drupal\user\ContextProvider\CurrentUserContext
|
2019-01-11 14:13:39 +00:00
|
|
|
arguments: ['@current_user', '@entity_type.manager']
|
Issue #2354889 by larowlan, dawehner, lauriii, Berdir, catch, martin107, pfrenssen, EclipseGc, Fabianx, Wim Leers, dsnopek, jibran, tim.plunkett, andypost: Make block context faster by removing onBlock event and replace it with loading from a ContextManager
2015-07-08 12:01:20 +00:00
|
|
|
tags:
|
|
|
|
- { name: 'context_provider' }
|
2018-02-19 12:21:13 +00:00
|
|
|
user.toolbar_link_builder:
|
|
|
|
class: Drupal\user\ToolbarLinkBuilder
|
|
|
|
arguments: ['@current_user']
|
Issue #2983395 by mcdruid, narendra.rajwar27, andypost, yogeshmpawar, vijaycs85, prabha1997, swatichouhan012, amjad1233, SunnyGambino, larowlan, borisson_, anavarre, kim.pepper, alexpott: user module's flood controls should do better logging
2020-06-08 22:54:48 +00:00
|
|
|
user.flood_control:
|
|
|
|
class: Drupal\user\UserFloodControl
|
|
|
|
arguments: ['@flood', '@event_dispatcher', '@request_stack']
|
2020-06-22 13:03:23 +00:00
|
|
|
user.flood_subscriber:
|
Issue #2983395 by mcdruid, narendra.rajwar27, andypost, yogeshmpawar, vijaycs85, prabha1997, swatichouhan012, amjad1233, SunnyGambino, larowlan, borisson_, anavarre, kim.pepper, alexpott: user module's flood controls should do better logging
2020-06-08 22:54:48 +00:00
|
|
|
class: Drupal\user\EventSubscriber\UserFloodSubscriber
|
|
|
|
arguments: ['@logger.channel.user']
|
|
|
|
tags:
|
|
|
|
- { name: 'event_subscriber' }
|
|
|
|
logger.channel.user:
|
|
|
|
parent: logger.channel_base
|
|
|
|
arguments: ['user']
|