[ Index ]

PHP Cross Reference of phpBB-3.1.12-deutsch

title

Body

[close]

/config/ -> profilefield.yml (source)

   1  services:
   2      profilefields.manager:
   3          class: phpbb\profilefields\manager
   4          arguments:
   5              - @auth
   6              - @dbal.conn
   7              - @dispatcher
   8              - @request
   9              - @template
  10              - @profilefields.type_collection
  11              - @user
  12              - %tables.profile_fields%
  13              - %tables.profile_fields_language%
  14              - %tables.profile_fields_data%
  15  
  16      profilefields.lang_helper:
  17          class: phpbb\profilefields\lang_helper
  18          arguments:
  19              - @dbal.conn
  20              - %tables.profile_fields_options_language%
  21  
  22  # ----- Profile fields types -----
  23      profilefields.type_collection:
  24          class: phpbb\di\service_collection
  25          arguments:
  26              - @service_container
  27          tags:
  28              - { name: service_collection, tag: profilefield.type }
  29  
  30      profilefields.type.bool:
  31          class: phpbb\profilefields\type\type_bool
  32          arguments:
  33              - @profilefields.lang_helper
  34              - @request
  35              - @template
  36              - @user
  37          tags:
  38              - { name: profilefield.type }
  39  
  40      profilefields.type.date:
  41          class: phpbb\profilefields\type\type_date
  42          arguments:
  43              - @request
  44              - @template
  45              - @user
  46          tags:
  47              - { name: profilefield.type }
  48  
  49      profilefields.type.dropdown:
  50          class: phpbb\profilefields\type\type_dropdown
  51          arguments:
  52              - @profilefields.lang_helper
  53              - @request
  54              - @template
  55              - @user
  56          tags:
  57              - { name: profilefield.type }
  58  
  59      profilefields.type.googleplus:
  60          class: phpbb\profilefields\type\type_googleplus
  61          arguments:
  62              - @request
  63              - @template
  64              - @user
  65          tags:
  66              - { name: profilefield.type }
  67  
  68      profilefields.type.int:
  69          class: phpbb\profilefields\type\type_int
  70          arguments:
  71              - @request
  72              - @template
  73              - @user
  74          tags:
  75              - { name: profilefield.type }
  76  
  77      profilefields.type.string:
  78          class: phpbb\profilefields\type\type_string
  79          arguments:
  80              - @request
  81              - @template
  82              - @user
  83          tags:
  84              - { name: profilefield.type }
  85  
  86      profilefields.type.text:
  87          class: phpbb\profilefields\type\type_text
  88          arguments:
  89              - @request
  90              - @template
  91              - @user
  92          tags:
  93              - { name: profilefield.type }
  94  
  95      profilefields.type.url:
  96          class: phpbb\profilefields\type\type_url
  97          arguments:
  98              - @request
  99              - @template
 100              - @user
 101          tags:
 102              - { name: profilefield.type }


Generated: Thu Jan 11 00:25:41 2018 Cross-referenced by PHPXref 0.7.1