2013-04-09 04:32:49 +00:00
|
|
|
services:
|
|
|
|
access_check.cron:
|
|
|
|
class: Drupal\system\Access\CronAccessCheck
|
|
|
|
tags:
|
2014-01-01 00:06:09 +00:00
|
|
|
- { name: access_check, applies_to: _access_system_cron }
|
2014-09-02 09:28:33 +00:00
|
|
|
access_check.db_update:
|
|
|
|
class: Drupal\system\Access\DbUpdateAccessCheck
|
|
|
|
tags:
|
|
|
|
- { name: access_check, applies_to: _access_system_update }
|
2013-06-05 13:39:57 +00:00
|
|
|
system.manager:
|
|
|
|
class: Drupal\system\SystemManager
|
2019-11-14 10:49:28 +00:00
|
|
|
arguments: ['@module_handler', '@request_stack', '@menu.link_tree', '@menu.active_trail']
|
2013-09-26 08:32:39 +00:00
|
|
|
system.breadcrumb.default:
|
|
|
|
class: Drupal\system\PathBasedBreadcrumbBuilder
|
2017-07-30 06:08:33 +00:00
|
|
|
arguments: ['@router.request_context', '@access_manager', '@router', '@path_processor_manager', '@config.factory', '@title_resolver', '@current_user', '@path.current', '@path.matcher']
|
2013-09-26 08:32:39 +00:00
|
|
|
tags:
|
|
|
|
- { name: breadcrumb_builder, priority: 0 }
|
2013-07-20 12:25:28 +00:00
|
|
|
path_processor.files:
|
|
|
|
class: Drupal\system\PathProcessor\PathProcessorFiles
|
|
|
|
tags:
|
|
|
|
- { name: path_processor_inbound, priority: 200 }
|
2014-03-21 12:35:45 +00:00
|
|
|
system.admin_path.route_subscriber:
|
|
|
|
class: Drupal\system\EventSubscriber\AdminRouteSubscriber
|
|
|
|
tags:
|
|
|
|
- { name: event_subscriber }
|
2013-12-17 11:03:15 +00:00
|
|
|
theme.negotiator.system.batch:
|
|
|
|
class: Drupal\system\Theme\BatchNegotiator
|
2014-06-24 12:39:26 +00:00
|
|
|
arguments: ['@batch.storage', '@request_stack']
|
2013-12-17 11:03:15 +00:00
|
|
|
tags:
|
|
|
|
- { name: theme_negotiator, priority: 1000 }
|
2014-09-02 09:28:33 +00:00
|
|
|
theme.negotiator.system.db_update:
|
|
|
|
class: Drupal\system\Theme\DbUpdateNegotiator
|
|
|
|
arguments: ['@config.factory']
|
|
|
|
tags:
|
|
|
|
- { name: theme_negotiator, priority: 100 }
|
2014-01-29 11:07:59 +00:00
|
|
|
system.config_subscriber:
|
|
|
|
class: Drupal\system\SystemConfigSubscriber
|
2015-11-06 23:09:03 +00:00
|
|
|
arguments: ['@router.builder']
|
2014-01-29 11:07:59 +00:00
|
|
|
tags:
|
|
|
|
- { name: event_subscriber }
|
2015-06-22 17:36:44 +00:00
|
|
|
system.config_cache_tag:
|
|
|
|
class: Drupal\system\EventSubscriber\ConfigCacheTag
|
2015-01-15 09:36:26 +00:00
|
|
|
arguments: ['@theme_handler', '@cache_tags.invalidator']
|
|
|
|
tags:
|
|
|
|
- { name: event_subscriber }
|
2019-08-12 04:24:04 +00:00
|
|
|
system.timezone_resolver:
|
|
|
|
class: Drupal\system\TimeZoneResolver
|
|
|
|
arguments: ['@current_user', '@config.factory']
|
|
|
|
tags:
|
|
|
|
- { name: event_subscriber }
|
Issue #3032390 by alexpott, dww, Pancho, 3CWebDev, kim.pepper, larowlan, Berdir, catch, andypost, chr.fritsch, Wim Leers: Add an event to sanitize filenames during upload
2021-02-24 16:02:18 +00:00
|
|
|
system.file_event.subscriber:
|
|
|
|
class: Drupal\system\EventSubscriber\SecurityFileUploadEventSubscriber
|
|
|
|
arguments: ['@config.factory']
|
|
|
|
tags:
|
|
|
|
- { name: event_subscriber }
|
Issue #3041885 by tedbow, beautifulmind, dww, ayushmishra206, phenaproxima, webchick, xjm, AaronMcHale, larowlan, benjifisher, heddn, catch, jhodgdon, longwave, mglaman, alexpott, mxr576, effulgentsia: Display relevant Security Advisories data for Drupal
2021-05-12 06:40:17 +00:00
|
|
|
logger.channel.system:
|
|
|
|
parent: logger.channel_base
|
|
|
|
arguments: ['system']
|
|
|
|
system.sa_fetcher:
|
|
|
|
class: Drupal\system\SecurityAdvisories\SecurityAdvisoriesFetcher
|
|
|
|
arguments: ['@config.factory', '@keyvalue.expirable', '@http_client', '@extension.list.module', '@extension.list.theme', '@extension.list.profile', '@logger.channel.system', '@settings']
|
|
|
|
system.advisories_config_subscriber:
|
|
|
|
class: Drupal\system\EventSubscriber\AdvisoriesConfigSubscriber
|
|
|
|
arguments: ['@system.sa_fetcher']
|
|
|
|
tags:
|
|
|
|
- { name: event_subscriber }
|