blob: 5d54e8dc822fe413f800ccfc01ca1cca74cd8e9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
services:
text_reparser_collection:
class: phpbb\di\service_collection
arguments:
- @service_container
tags:
- { name: service_collection, tag: text_reparser.plugin }
text_reparser.contact_admin_info:
class: phpbb\textreparser\plugins\contact_admin_info
arguments:
- @config_text
tags:
- { name: text_reparser.plugin }
text_reparser.forum_description:
class: phpbb\textreparser\plugins\forum_description
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
text_reparser.forum_rules:
class: phpbb\textreparser\plugins\forum_rules
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
text_reparser.group_description:
class: phpbb\textreparser\plugins\group_description
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
text_reparser.pm_text:
class: phpbb\textreparser\plugins\pm_text
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
text_reparser.poll_option:
class: phpbb\textreparser\plugins\poll_option
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
text_reparser.poll_title:
class: phpbb\textreparser\plugins\poll_title
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
text_reparser.post_text:
class: phpbb\textreparser\plugins\post_text
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
text_reparser.user_signature:
class: phpbb\textreparser\plugins\user_signature
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
|