1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-13 12:14:06 +02:00

[ticket/13713] Fix case for phpBB directory

PHPBB3-13713
This commit is contained in:
lavigor
2018-05-30 22:06:26 +03:00
committed by Marc Alexander
parent 6c42563b4d
commit eec7703d3b
12 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
services:
# ----- Controller -----
phpbb.mention.controller:
class: phpbb\mention\controller\mention
arguments:
- '@phpbb.mention.source_collection'
- '@request'
- '%core.root_path%'
- '%core.php_ext%'
# ----- Sources for mention -----
phpbb.mention.source_collection:
class: phpbb\di\service_collection
arguments:
- '@service_container'
tags:
- { name: service_collection, tag: mention.source }
phpbb.mention.source.friend:
class: phpbb\mention\source\friend
arguments:
- '@dbal.conn'
- '@user'
tags:
- { name: mention.source }
phpbb.mention.source.topic:
class: phpbb\mention\source\topic
arguments:
- '@dbal.conn'
tags:
- { name: mention.source }
phpbb.mention.source.usergroup:
class: phpbb\mention\source\usergroup
arguments:
- '@dbal.conn'
- '@group_helper'
- '@user'
tags:
- { name: mention.source }