1
0
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:
JoshyPHP
2015-05-01 05:15:56 +02:00
parent 073f3e6fdc
commit de52580a78
10 changed files with 579 additions and 0 deletions

View 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 }