mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/13803] WIP implementation
PHPBB3-13803
This commit is contained in:
63
phpBB/config/default/container/services_text_reparser.yml
Normal file
63
phpBB/config/default/container/services_text_reparser.yml
Normal file
@@ -0,0 +1,63 @@
|
||||
services:
|
||||
text_reparser.admin_contact_info:
|
||||
class: phpbb\textreparser\admincontactinfo
|
||||
arguments:
|
||||
- @dbal.conn
|
||||
tags:
|
||||
- { name: text_reparser.plugin }
|
||||
|
||||
text_reparser.forum_description:
|
||||
class: phpbb\textreparser\forumdescription
|
||||
arguments:
|
||||
- @dbal.conn
|
||||
tags:
|
||||
- { name: text_reparser.plugin }
|
||||
|
||||
text_reparser.forum_rules:
|
||||
class: phpbb\textreparser\forumrules
|
||||
arguments:
|
||||
- @dbal.conn
|
||||
tags:
|
||||
- { name: text_reparser.plugin }
|
||||
|
||||
text_reparser.group_description:
|
||||
class: phpbb\textreparser\groupdescription
|
||||
arguments:
|
||||
- @dbal.conn
|
||||
tags:
|
||||
- { name: text_reparser.plugin }
|
||||
|
||||
text_reparser.pm_text:
|
||||
class: phpbb\textreparser\pmtext
|
||||
arguments:
|
||||
- @dbal.conn
|
||||
tags:
|
||||
- { name: text_reparser.plugin }
|
||||
|
||||
text_reparser.poll_option:
|
||||
class: phpbb\textreparser\polloption
|
||||
arguments:
|
||||
- @dbal.conn
|
||||
tags:
|
||||
- { name: text_reparser.plugin }
|
||||
|
||||
text_reparser.poll_title:
|
||||
class: phpbb\textreparser\polltitle
|
||||
arguments:
|
||||
- @dbal.conn
|
||||
tags:
|
||||
- { name: text_reparser.plugin }
|
||||
|
||||
text_reparser.post_text:
|
||||
class: phpbb\textreparser\posttext
|
||||
arguments:
|
||||
- @dbal.conn
|
||||
tags:
|
||||
- { name: text_reparser.plugin }
|
||||
|
||||
text_reparser.user_signature:
|
||||
class: phpbb\textreparser\usersignature
|
||||
arguments:
|
||||
- @dbal.conn
|
||||
tags:
|
||||
- { name: text_reparser.plugin }
|
Reference in New Issue
Block a user