mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
Merge pull request #3579 from s9e/ticket/13803
[ticket/13803] Implement a generic and scalable way to reparse rich text
This commit is contained in:
@@ -19,6 +19,7 @@ imports:
|
||||
- { resource: services_report.yml }
|
||||
- { resource: services_routing.yml }
|
||||
- { resource: services_text_formatter.yml }
|
||||
- { resource: services_text_reparser.yml }
|
||||
- { resource: services_twig.yml }
|
||||
- { resource: services_user.yml }
|
||||
|
||||
|
70
phpBB/config/default/container/services_text_reparser.yml
Normal file
70
phpBB/config/default/container/services_text_reparser.yml
Normal file
@@ -0,0 +1,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 }
|
Reference in New Issue
Block a user