PDF rausgenommen

This commit is contained in:
aschwarz
2023-01-23 11:03:31 +01:00
parent 82d562a322
commit a6523903eb
28078 changed files with 4247552 additions and 2 deletions

View File

@ -0,0 +1,11 @@
services:
# ----- Cron tasks -----
phpbb.viglink.cron.task.viglink:
class: phpbb\viglink\cron\viglink
arguments:
- '@config'
- '@phpbb.viglink.helper'
calls:
- [set_name, [cron.task.viglink]]
tags:
- { name: cron.task }

View File

@ -0,0 +1,35 @@
imports:
- { resource: cron.yml }
services:
phpbb.viglink.listener:
class: phpbb\viglink\event\listener
arguments:
- '@config'
- '@template'
tags:
- { name: event.listener }
phpbb.viglink.acp_listener:
class: phpbb\viglink\event\acp_listener
arguments:
- '@config'
- '@language'
- '@request'
- '@template'
- '@user'
- '@phpbb.viglink.helper'
- '%core.root_path%'
- '%core.php_ext%'
tags:
- { name: event.listener }
phpbb.viglink.helper:
class: phpbb\viglink\acp\viglink_helper
arguments:
- '@cache.driver'
- '@config'
- '@file_downloader'
- '@language'
- '@log'
- '@user'