2010-07-02 01:48:07 +02:00
|
|
|
<?php
|
2010-12-09 08:08:59 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 16:18:46 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2010-12-09 08:08:59 +01:00
|
|
|
*/
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2019-08-05 09:02:55 +02:00
|
|
|
use Dice\Dice;
|
|
|
|
|
2020-12-09 23:10:27 +01:00
|
|
|
$start_time = microtime(true);
|
|
|
|
|
2019-01-18 20:10:05 +01:00
|
|
|
if (!file_exists(__DIR__ . '/vendor/autoload.php')) {
|
|
|
|
die('Vendor path not found. Please execute "bin/composer.phar --no-dev install" on the command line in the web root.');
|
|
|
|
}
|
|
|
|
|
2018-12-27 18:17:02 +01:00
|
|
|
require __DIR__ . '/vendor/autoload.php';
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2019-08-05 09:02:55 +02:00
|
|
|
$dice = (new Dice())->addRules(include __DIR__ . '/static/dependencies.config.php');
|
2019-09-17 16:47:00 +02:00
|
|
|
$dice = $dice->addRule(Friendica\App\Mode::class, ['call' => [['determineRunMode', [false, $_SERVER], Dice::CHAIN_CALL]]]);
|
2016-07-02 08:54:57 +02:00
|
|
|
|
2019-12-15 23:28:01 +01:00
|
|
|
\Friendica\DI::init($dice);
|
2019-07-21 20:24:16 +02:00
|
|
|
|
2019-12-15 22:34:11 +01:00
|
|
|
$a = \Friendica\DI::app();
|
2019-02-19 01:56:41 +01:00
|
|
|
|
2021-01-01 20:35:29 +01:00
|
|
|
\Friendica\DI::mode()->setExecutor(\Friendica\App\Mode::INDEX);
|
|
|
|
|
2019-08-12 18:13:58 +02:00
|
|
|
$a->runFrontend(
|
|
|
|
$dice->create(\Friendica\App\Module::class),
|
|
|
|
$dice->create(\Friendica\App\Router::class),
|
2020-01-19 22:23:44 +01:00
|
|
|
$dice->create(\Friendica\Core\PConfig\IPConfig::class),
|
2020-09-30 16:53:18 +02:00
|
|
|
$dice->create(\Friendica\Security\Authentication::class),
|
2020-12-09 23:10:27 +01:00
|
|
|
$dice->create(\Friendica\App\Page::class),
|
|
|
|
$start_time
|
2019-08-12 18:13:58 +02:00
|
|
|
);
|