1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/15342] Track storage files

PHPBB3-15342
This commit is contained in:
Rubén Calvo
2018-02-11 11:33:04 +01:00
parent cd84919f1a
commit a02fa1170b
6 changed files with 199 additions and 8 deletions

View File

@@ -12,14 +12,17 @@ services:
storage.avatar:
class: phpbb\storage\storage
arguments:
- '@dbal.conn'
- '@storage.adapter.factory'
- 'avatar'
- '%tables.storage%'
tags:
- { name: storage }
storage.backup:
class: phpbb\storage\storage
arguments:
- '@dbal.conn'
- '@storage.adapter.factory'
- 'backup'
tags:

View File

@@ -60,6 +60,7 @@ parameters:
tables.sitelist: '%core.table_prefix%sitelist'
tables.smilies: '%core.table_prefix%smilies'
tables.sphinx: '%core.table_prefix%sphinx'
tables.storage: '%core.table_prefix%storage'
tables.styles: '%core.table_prefix%styles'
tables.styles_template: '%core.table_prefix%styles_template'
tables.styles_template_data: '%core.table_prefix%styles_template_data'