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.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

captcha.yml

Zuletzt modifiziert: 09.10.2024, 12:51 - Dateigröße: 1.70 KiB


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  # Scope MUST be prototype 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          scope: prototype
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          scope: prototype
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          scope: prototype
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          scope: prototype
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          scope: prototype
56          calls:
57              - [set_name, [core.captcha.plugins.recaptcha]]
58          tags:
59              - { name: captcha.plugins }
60