Verzeichnisstruktur phpBB-3.1.0
- Veröffentlicht
- 27.10.2014
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
db.yml
01 services:
02 dbal.conn:
03 class: phpbb\db\driver\factory
04 arguments:
05 - @service_container
06
07 dbal.conn.driver:
08 class: %dbal.driver.class%
09 calls:
10 - [sql_connect, [%dbal.dbhost%, %dbal.dbuser%, %dbal.dbpasswd%, %dbal.dbname%, %dbal.dbport%, false, %dbal.new_link%]]
11
12 dbal.tools:
13 class: phpbb\db\tools
14 arguments:
15 - @dbal.conn
16
17 # ----- Migrator -----
18 migrator:
19 class: phpbb\db\migrator
20 arguments:
21 - @config
22 - @dbal.conn
23 - @dbal.tools
24 - %tables.migrations%
25 - %core.root_path%
26 - %core.php_ext%
27 - %core.table_prefix%
28 - @migrator.tool_collection
29 - @migrator.helper
30
31 migrator.helper:
32 class: phpbb\db\migration\helper
33
34 # ----- Migrator's tools -----
35 migrator.tool_collection:
36 class: phpbb\di\service_collection
37 arguments:
38 - @service_container
39 tags:
40 - { name: service_collection, tag: migrator.tool }
41
42 migrator.tool.config:
43 class: phpbb\db\migration\tool\config
44 arguments:
45 - @config
46 tags:
47 - { name: migrator.tool }
48
49 migrator.tool.config_text:
50 class: phpbb\db\migration\tool\config_text
51 arguments:
52 - @config_text
53 tags:
54 - { name: migrator.tool }
55
56 migrator.tool.module:
57 class: phpbb\db\migration\tool\module
58 arguments:
59 - @dbal.conn
60 - @cache
61 - @user
62 - %core.root_path%
63 - %core.php_ext%
64 - %tables.modules%
65 tags:
66 - { name: migrator.tool }
67
68 migrator.tool.permission:
69 class: phpbb\db\migration\tool\permission
70 arguments:
71 - @dbal.conn
72 - @cache
73 - @auth
74 - %core.root_path%
75 - %core.php_ext%
76 tags:
77 - { name: migrator.tool }
78