1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hubzilla_ynh.git synced 2024-09-03 19:26:21 +02:00
hubzilla_ynh/sources/include/cli_startup.php

41 lines
808 B
PHP
Raw Normal View History

<?php /** @file */
require_once('boot.php');
// Everything we need to boot standalone 'background' processes
function cli_startup() {
global $a, $db, $default_timezone;
if(is_null($a)) {
2016-04-17 16:29:18 +02:00
$a = new miniApp;
}
2016-04-17 16:29:18 +02:00
App::init();
if(is_null($db)) {
@include(".htconfig.php");
2016-04-17 16:29:18 +02:00
$a->convert();
2016-03-20 08:06:33 +01:00
if(! defined('UNO'))
define('UNO', 0);
2016-04-17 16:29:18 +02:00
App::$timezone = ((x($default_timezone)) ? $default_timezone : 'UTC');
date_default_timezone_set(App::$timezone);
require_once('include/dba/dba_driver.php');
$db = dba_factory($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type);
unset($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type);
};
2016-04-17 16:29:18 +02:00
\Zotlabs\Web\Session::init();
load_config('system');
2016-04-17 16:29:18 +02:00
App::set_baseurl(get_config('system','baseurl'));
load_hooks();
}