2012-11-09 07:40:08 -06:00
|
|
|
services:
|
2012-11-20 18:14:48 -06:00
|
|
|
notification.type_collection:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\di\service_collection
|
2012-11-20 18:14:48 -06:00
|
|
|
arguments:
|
|
|
|
- @service_container
|
|
|
|
tags:
|
|
|
|
- { name: service_collection, tag: notification.type }
|
|
|
|
|
|
|
|
notification.method_collection:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\di\service_collection
|
2012-11-20 18:14:48 -06:00
|
|
|
arguments:
|
|
|
|
- @service_container
|
|
|
|
tags:
|
|
|
|
- { name: service_collection, tag: notification.method }
|
|
|
|
|
2012-11-09 07:40:08 -06:00
|
|
|
notification.type.approve_post:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\type\approve_post
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work! # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-01-15 12:10:07 -06:00
|
|
|
- %tables.notification_types%
|
2012-11-09 08:48:41 -06:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
2012-11-09 07:40:08 -06:00
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
|
|
|
notification.type.approve_topic:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\type\approve_topic
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-01-15 12:10:07 -06:00
|
|
|
- %tables.notification_types%
|
2012-11-09 08:48:41 -06:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
2012-11-09 07:40:08 -06:00
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
|
|
|
notification.type.bookmark:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\type\bookmark
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-01-15 12:10:07 -06:00
|
|
|
- %tables.notification_types%
|
2012-11-09 08:48:41 -06:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
2012-11-09 07:40:08 -06:00
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
|
|
|
notification.type.disapprove_post:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\type\disapprove_post
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-01-15 12:10:07 -06:00
|
|
|
- %tables.notification_types%
|
2012-11-09 08:48:41 -06:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
2012-11-09 07:40:08 -06:00
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
|
|
|
notification.type.disapprove_topic:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\type\disapprove_topic
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-01-15 12:10:07 -06:00
|
|
|
- %tables.notification_types%
|
2012-11-09 08:48:41 -06:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
2012-11-09 07:40:08 -06:00
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
2013-07-26 10:26:52 -05:00
|
|
|
notification.type.group_request:
|
2013-09-16 03:14:39 +02:00
|
|
|
class: phpbb\notification\type\group_request
|
2013-07-26 10:26:52 -05:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
|
|
|
arguments:
|
|
|
|
- @user_loader
|
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
|
|
|
- %tables.notification_types%
|
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
2013-07-27 17:02:45 -05:00
|
|
|
notification.type.group_request_approved:
|
2013-09-16 03:14:39 +02:00
|
|
|
class: phpbb\notification\type\group_request_approved
|
2013-07-27 17:02:45 -05:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
|
|
|
arguments:
|
|
|
|
- @user_loader
|
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
|
|
|
- %tables.notification_types%
|
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
2012-11-09 07:40:08 -06:00
|
|
|
notification.type.pm:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\type\pm
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-01-15 12:10:07 -06:00
|
|
|
- %tables.notification_types%
|
2012-11-09 08:48:41 -06:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
2012-11-09 07:40:08 -06:00
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
|
|
|
notification.type.post:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\type\post
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-01-15 12:10:07 -06:00
|
|
|
- %tables.notification_types%
|
2012-11-09 08:48:41 -06:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
2012-11-09 07:40:08 -06:00
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
|
|
|
notification.type.post_in_queue:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\type\post_in_queue
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-01-15 12:10:07 -06:00
|
|
|
- %tables.notification_types%
|
2012-11-09 08:48:41 -06:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
2012-11-09 07:40:08 -06:00
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
|
|
|
notification.type.quote:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\type\quote
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-01-15 12:10:07 -06:00
|
|
|
- %tables.notification_types%
|
2012-11-09 08:48:41 -06:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
2012-11-09 07:40:08 -06:00
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
|
|
|
notification.type.report_pm:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\type\report_pm
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-01-15 12:10:07 -06:00
|
|
|
- %tables.notification_types%
|
2012-11-09 08:48:41 -06:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
2012-11-09 07:40:08 -06:00
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
|
|
|
notification.type.report_pm_closed:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\type\report_pm_closed
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-01-15 12:10:07 -06:00
|
|
|
- %tables.notification_types%
|
2012-11-09 08:48:41 -06:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
2012-11-09 07:40:08 -06:00
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
|
|
|
notification.type.report_post:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\type\report_post
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-01-15 12:10:07 -06:00
|
|
|
- %tables.notification_types%
|
2012-11-09 08:48:41 -06:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
2012-11-09 07:40:08 -06:00
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
|
|
|
notification.type.report_post_closed:
|
2013-10-30 15:17:08 -07:00
|
|
|
class: phpbb\notification\type\report_post_closed
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-01-15 12:10:07 -06:00
|
|
|
- %tables.notification_types%
|
2012-11-09 08:48:41 -06:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
2012-11-09 07:40:08 -06:00
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
|
|
|
notification.type.topic:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\type\topic
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-01-15 12:10:07 -06:00
|
|
|
- %tables.notification_types%
|
2012-11-09 08:48:41 -06:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
2012-11-09 07:40:08 -06:00
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
|
|
|
notification.type.topic_in_queue:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\type\topic_in_queue
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
2013-01-15 12:10:07 -06:00
|
|
|
- %tables.notification_types%
|
2013-10-24 02:37:20 -07:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
|
|
|
notification.type.admin_activate_user:
|
|
|
|
class: phpbb\notification\type\admin_activate_user
|
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
|
|
|
arguments:
|
|
|
|
- @user_loader
|
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
|
|
|
- %tables.notification_types%
|
2012-11-09 08:48:41 -06:00
|
|
|
- %tables.notifications%
|
|
|
|
- %tables.user_notifications%
|
2012-11-09 07:40:08 -06:00
|
|
|
tags:
|
|
|
|
- { name: notification.type }
|
|
|
|
|
|
|
|
notification.method.email:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\method\email
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
|
|
|
tags:
|
|
|
|
- { name: notification.method }
|
|
|
|
|
|
|
|
notification.method.jabber:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\notification\method\jabber
|
2012-12-09 13:43:06 -06:00
|
|
|
scope: prototype # scope MUST be prototype for this to work!
|
2012-11-09 07:40:08 -06:00
|
|
|
arguments:
|
2012-11-20 18:14:48 -06:00
|
|
|
- @user_loader
|
2012-11-09 07:40:08 -06:00
|
|
|
- @dbal.conn
|
|
|
|
- @cache.driver
|
|
|
|
- @user
|
|
|
|
- @auth
|
|
|
|
- @config
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
|
|
|
tags:
|
2012-12-08 13:18:11 -06:00
|
|
|
- { name: notification.method }
|