[ Index ]

PHP Cross Reference of phpBB-3.1.12-deutsch

title

Body

[close]

/ -> app.php (source)

   1  <?php
   2  /**
   3  *
   4  * This file is part of the phpBB Forum Software package.
   5  *
   6  * @copyright (c) phpBB Limited <https://www.phpbb.com>
   7  * @license GNU General Public License, version 2 (GPL-2.0)
   8  *
   9  * For full copyright and license information, please see
  10  * the docs/CREDITS.txt file.
  11  *
  12  */
  13  
  14  /**
  15  */
  16  
  17  /**
  18  * @ignore
  19  */
  20  define('IN_PHPBB', true);
  21  $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
  22  $phpEx = substr(strrchr(__FILE__, '.'), 1);
  23  include($phpbb_root_path . 'common.' . $phpEx);
  24  include($phpbb_root_path . 'includes/functions_url_matcher.' . $phpEx);
  25  
  26  // Start session management
  27  $user->session_begin();
  28  $auth->acl($user->data);
  29  $user->setup('app');
  30  
  31  $http_kernel = $phpbb_container->get('http_kernel');
  32  $symfony_request = $phpbb_container->get('symfony_request');
  33  $response = $http_kernel->handle($symfony_request);
  34  $response->send();
  35  $http_kernel->terminate($symfony_request, $response);


Generated: Thu Jan 11 00:25:41 2018 Cross-referenced by PHPXref 0.7.1