Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
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 |
symfony_request.php
01 <?php
02 /**
03 *
04 * This file is part of the phpBB Forum Software package.
05 *
06 * @copyright (c) phpBB Limited <https://www.phpbb.com>
07 * @license GNU General Public License, version 2 (GPL-2.0)
08 *
09 * For full copyright and license information, please see
10 * the docs/CREDITS.txt file.
11 *
12 */
13
14 namespace phpbb;
15
16 use Symfony\Component\HttpFoundation\Request;
17
18 /**
19 * WARNING: The Symfony request does not escape the input and should be used very carefully
20 * prefer the phpbb request as possible
21 */
22 class symfony_request extends Request
23 {
24 /**
25 * Constructor
26 *
27 * @param \phpbb\request\request_interface $phpbb_request
28 */
29 public function __construct(\phpbb\request\request_interface $phpbb_request)
30 {
31 $get_parameters = $phpbb_request->get_super_global(\phpbb\request\request_interface::GET);
32 $post_parameters = $phpbb_request->get_super_global(\phpbb\request\request_interface::POST);
33 $server_parameters = $phpbb_request->get_super_global(\phpbb\request\request_interface::SERVER);
34 $files_parameters = $phpbb_request->get_super_global(\phpbb\request\request_interface::FILES);
35 $cookie_parameters = $phpbb_request->get_super_global(\phpbb\request\request_interface::COOKIE);
36
37 parent::__construct($get_parameters, $post_parameters, array(), $cookie_parameters, $files_parameters, $server_parameters);
38 }
39 }
40