Verzeichnisstruktur phpBB-3.2.0
- Veröffentlicht
- 06.01.2017
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 |
services_captcha.yml
01 services:
02 captcha.factory:
03 class: phpbb\captcha\factory
04 arguments:
05 - '@service_container'
06 - '@captcha.plugins.service_collection'
07
08 # ----- Captcha plugins -----
09 # Service MUST NOT be shared for all the plugins to work.
10 captcha.plugins.service_collection:
11 class: phpbb\di\service_collection
12 arguments:
13 - '@service_container'
14 tags:
15 - { name: service_collection, tag: captcha.plugins }
16
17 core.captcha.plugins.gd:
18 class: phpbb\captcha\plugins\gd
19 shared: false
20 calls:
21 - [set_name, [core.captcha.plugins.gd]]
22 tags:
23 - { name: captcha.plugins }
24
25 core.captcha.plugins.gd_wave:
26 class: phpbb\captcha\plugins\gd_wave
27 shared: false
28 calls:
29 - [set_name, [core.captcha.plugins.gd_wave]]
30 tags:
31 - { name: captcha.plugins }
32
33 core.captcha.plugins.nogd:
34 class: phpbb\captcha\plugins\nogd
35 shared: false
36 calls:
37 - [set_name, [core.captcha.plugins.nogd]]
38 tags:
39 - { name: captcha.plugins }
40
41 core.captcha.plugins.qa:
42 class: phpbb\captcha\plugins\qa
43 shared: false
44 arguments:
45 - '%tables.captcha_qa_questions%'
46 - '%tables.captcha_qa_answers%'
47 - '%tables.captcha_qa_confirm%'
48 calls:
49 - [set_name, [core.captcha.plugins.qa]]
50 tags:
51 - { name: captcha.plugins }
52
53 core.captcha.plugins.recaptcha:
54 class: phpbb\captcha\plugins\recaptcha
55 shared: false
56 calls:
57 - [set_name, [core.captcha.plugins.recaptcha]]
58 tags:
59 - { name: captcha.plugins }
60