diff options
author | JoshyPHP <s9e.dev@gmail.com> | 2015-05-01 05:15:56 +0200 |
---|---|---|
committer | JoshyPHP <s9e.dev@gmail.com> | 2015-05-30 17:26:00 +0200 |
commit | de52580a78bcab47a2311f3993fd9952f963d563 (patch) | |
tree | 1d06c842d581994789109b090f54ce5f59ee2dd3 /phpBB/config | |
parent | 073f3e6fdc5af190db85b6cdefd418af4312af9f (diff) | |
download | forums-de52580a78bcab47a2311f3993fd9952f963d563.tar forums-de52580a78bcab47a2311f3993fd9952f963d563.tar.gz forums-de52580a78bcab47a2311f3993fd9952f963d563.tar.bz2 forums-de52580a78bcab47a2311f3993fd9952f963d563.tar.xz forums-de52580a78bcab47a2311f3993fd9952f963d563.zip |
[ticket/13803] WIP implementation
PHPBB3-13803
Diffstat (limited to 'phpBB/config')
-rw-r--r-- | phpBB/config/default/container/services_text_reparser.yml | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/phpBB/config/default/container/services_text_reparser.yml b/phpBB/config/default/container/services_text_reparser.yml new file mode 100644 index 0000000000..3113c02f6d --- /dev/null +++ b/phpBB/config/default/container/services_text_reparser.yml @@ -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 } |