47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
services:
|
|
dmzx.mchat.controller:
|
|
class: dmzx\mchat\controller\mchat
|
|
arguments:
|
|
- @dmzx.mchat.render_helper
|
|
- @controller.helper
|
|
- @request
|
|
dmzx.mchat.render_helper:
|
|
class: dmzx\mchat\core\render_helper
|
|
arguments:
|
|
- @dmzx.mchat.functions_mchat
|
|
- @config
|
|
- @controller.helper
|
|
- @template
|
|
- @user
|
|
- @auth
|
|
- @dbal.conn
|
|
- @cache
|
|
- @request
|
|
- %core.root_path%
|
|
- %core.php_ext%
|
|
- %core.table_prefix%
|
|
dmzx.mchat.functions_mchat:
|
|
class: dmzx\mchat\core\functions_mchat
|
|
arguments:
|
|
- @template
|
|
- @user
|
|
- @auth
|
|
- @dbal.conn
|
|
- @cache
|
|
- %core.table_prefix%
|
|
dmzx.mchat.listener:
|
|
class: dmzx\mchat\event\listener
|
|
arguments:
|
|
- @dmzx.mchat.render_helper
|
|
- @auth
|
|
- @config
|
|
- @controller.helper
|
|
- @template
|
|
- @user
|
|
- @dbal.conn
|
|
- %core.root_path%
|
|
- %core.php_ext%
|
|
- %core.table_prefix%
|
|
tags:
|
|
- { name: event.listener }
|