[ Index ]

PHP Cross Reference of phpBB-3.3.14-deutsch

title

Body

[close]

/config/installer/container/ -> services_install_database.yml (source)

   1  services:
   2      installer.install_database.create_schema_file:
   3          class: phpbb\install\module\install_database\task\create_schema_file
   4          arguments:
   5              - '@installer.helper.config'
   6              - '@installer.helper.database'
   7              - '@filesystem'
   8              - '%core.root_path%'
   9              - '%core.php_ext%'
  10          tags:
  11              - { name: install_database_install, order: 10 }
  12  
  13      installer.install_database.set_up_database:
  14          class: phpbb\install\module\install_database\task\set_up_database
  15          arguments:
  16              - '@installer.helper.config'
  17              - '@installer.helper.database'
  18              - '@filesystem'
  19              - '@installer.helper.iohandler'
  20              - '%core.root_path%'
  21          tags:
  22              - { name: install_database_install, order: 20 }
  23  
  24      installer.install_database.add_tables:
  25          class: phpbb\install\module\install_database\task\add_tables
  26          arguments:
  27              - '@installer.helper.config'
  28              - '@installer.helper.database'
  29              - '@filesystem'
  30              - '%core.root_path%'
  31          tags:
  32              - { name: install_database_install, order: 30 }
  33  
  34      installer.install_database.add_default_data:
  35          class: phpbb\install\module\install_database\task\add_default_data
  36          arguments:
  37              - '@installer.helper.database'
  38              - '@installer.helper.config'
  39              - '@installer.helper.iohandler'
  40              - '@installer.helper.container_factory'
  41              - '@language'
  42              - '%core.root_path%'
  43          tags:
  44              - { name: install_database_install, order: 40 }
  45  
  46      installer.install_database.add_config_settings:
  47          class: phpbb\install\module\install_database\task\add_config_settings
  48          arguments:
  49              - '@filesystem'
  50              - '@installer.helper.config'
  51              - '@installer.helper.iohandler'
  52              - '@installer.helper.container_factory'
  53              - '@language'
  54              - '%core.root_path%'
  55          tags:
  56              - { name: install_database_install, order: 50 }
  57  
  58      installer.module.install_database_collection:
  59          class: phpbb\di\ordered_service_collection
  60          arguments:
  61              - '@service_container'
  62          tags:
  63              - { name: service_collection, tag: install_database_install, class_name_aware: true }
  64  
  65      installer.module.database_install:
  66          class: phpbb\install\module\install_database\module
  67          parent: installer.module_base
  68          arguments:
  69              - '@installer.module.install_database_collection'
  70          tags:
  71              - { name: installer_install_module, order: 40 }


Generated: Mon Nov 25 19:05:08 2024 Cross-referenced by PHPXref 0.7.1