2013-09-17 15:17:54 +02:00
|
|
|
services:
|
|
|
|
profilefields:
|
|
|
|
class: \phpbb\profilefields\profilefields
|
|
|
|
arguments:
|
|
|
|
- @auth
|
|
|
|
- @dbal.conn
|
|
|
|
- @request
|
|
|
|
- @template
|
|
|
|
- @user
|
2014-01-18 12:36:18 +01:00
|
|
|
- %tables.profile_fields%
|
|
|
|
- %tables.profile_fields_language%
|
|
|
|
- %tables.profile_fields_data%
|
2014-01-15 12:16:04 +01:00
|
|
|
calls:
|
|
|
|
- [set_type_collection, [@profilefields.type_collection]]
|
2013-09-17 15:17:54 +02:00
|
|
|
|
2014-01-15 11:40:03 +01:00
|
|
|
profilefields.lang_helper:
|
|
|
|
class: \phpbb\profilefields\lang_helper
|
|
|
|
arguments:
|
|
|
|
- @dbal.conn
|
2014-01-18 12:36:18 +01:00
|
|
|
- %tables.profile_fields_options_language%
|
2014-01-15 11:40:03 +01:00
|
|
|
|
|
|
|
profilefields.type_collection:
|
|
|
|
class: phpbb\di\service_collection
|
|
|
|
arguments:
|
|
|
|
- @service_container
|
|
|
|
tags:
|
|
|
|
- { name: service_collection, tag: profilefield.type }
|
|
|
|
|
2014-01-11 01:44:48 +01:00
|
|
|
profilefields.type.bool:
|
|
|
|
class: \phpbb\profilefields\type\type_bool
|
2013-09-17 15:17:54 +02:00
|
|
|
arguments:
|
2014-01-15 11:40:03 +01:00
|
|
|
- @profilefields.lang_helper
|
2014-01-15 15:34:17 +01:00
|
|
|
- @profilefields
|
2014-01-13 21:05:19 +01:00
|
|
|
- @request
|
2014-01-14 12:51:32 +01:00
|
|
|
- @template
|
2014-01-11 01:44:48 +01:00
|
|
|
- @user
|
|
|
|
tags:
|
|
|
|
- { name: profilefield.type }
|
|
|
|
|
|
|
|
profilefields.type.date:
|
|
|
|
class: \phpbb\profilefields\type\type_date
|
|
|
|
arguments:
|
|
|
|
- @profilefields
|
2014-01-13 21:05:19 +01:00
|
|
|
- @request
|
2014-01-14 12:51:32 +01:00
|
|
|
- @template
|
2014-01-11 01:44:48 +01:00
|
|
|
- @user
|
|
|
|
tags:
|
|
|
|
- { name: profilefield.type }
|
|
|
|
|
|
|
|
profilefields.type.dropdown:
|
|
|
|
class: \phpbb\profilefields\type\type_dropdown
|
|
|
|
arguments:
|
2014-01-15 11:40:03 +01:00
|
|
|
- @profilefields.lang_helper
|
2014-01-15 15:34:17 +01:00
|
|
|
- @profilefields
|
2014-01-13 21:05:19 +01:00
|
|
|
- @request
|
2014-01-14 12:51:32 +01:00
|
|
|
- @template
|
2013-09-17 15:17:54 +02:00
|
|
|
- @user
|
2014-01-11 01:44:48 +01:00
|
|
|
tags:
|
|
|
|
- { name: profilefield.type }
|
2013-09-17 15:17:54 +02:00
|
|
|
|
2014-01-11 01:44:48 +01:00
|
|
|
profilefields.type.int:
|
|
|
|
class: \phpbb\profilefields\type\type_int
|
|
|
|
arguments:
|
2014-01-13 21:05:19 +01:00
|
|
|
- @request
|
2014-01-14 12:51:32 +01:00
|
|
|
- @template
|
2014-01-11 01:44:48 +01:00
|
|
|
- @user
|
|
|
|
tags:
|
|
|
|
- { name: profilefield.type }
|
|
|
|
|
|
|
|
profilefields.type.string:
|
|
|
|
class: \phpbb\profilefields\type\type_string
|
|
|
|
arguments:
|
2014-01-13 21:05:19 +01:00
|
|
|
- @request
|
2014-01-14 12:51:32 +01:00
|
|
|
- @template
|
2014-01-11 01:44:48 +01:00
|
|
|
- @user
|
|
|
|
tags:
|
|
|
|
- { name: profilefield.type }
|
|
|
|
|
|
|
|
profilefields.type.text:
|
|
|
|
class: \phpbb\profilefields\type\type_text
|
|
|
|
arguments:
|
2014-01-13 21:05:19 +01:00
|
|
|
- @request
|
2014-01-14 12:51:32 +01:00
|
|
|
- @template
|
2014-01-11 01:44:48 +01:00
|
|
|
- @user
|
|
|
|
tags:
|
|
|
|
- { name: profilefield.type }
|