diff options
author | friendica <info@friendica.com> | 2012-10-22 19:46:18 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-22 19:46:18 -0700 |
commit | a7abe24382bac00243fd19ebc2cdde87569eab79 (patch) | |
tree | 2e802f3357af5e13407241e1c94a17f5e7962517 /include/cli_startup.php | |
parent | 896ca97330f86afe3ab9c7a07ae6d1676c1a546a (diff) | |
download | volse-hubzilla-a7abe24382bac00243fd19ebc2cdde87569eab79.tar.gz volse-hubzilla-a7abe24382bac00243fd19ebc2cdde87569eab79.tar.bz2 volse-hubzilla-a7abe24382bac00243fd19ebc2cdde87569eab79.zip |
more file cleanup
Diffstat (limited to 'include/cli_startup.php')
-rw-r--r-- | include/cli_startup.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/include/cli_startup.php b/include/cli_startup.php new file mode 100644 index 000000000..589696b85 --- /dev/null +++ b/include/cli_startup.php @@ -0,0 +1,31 @@ +<?php + +require_once('boot.php'); + +// Everything we need to boot standalone 'background' processes + +function cli_startup() { + + global $a, $db; + + if(is_null($a)) { + $a = new App; + } + + if(is_null($db)) { + @include(".htconfig.php"); + require_once("dba.php"); + $db = new dba($db_host, $db_user, $db_pass, $db_data); + unset($db_host, $db_user, $db_pass, $db_data); + }; + + require_once('include/session.php'); + + load_config('config'); + load_config('system'); + + $a->set_baseurl(get_config('system','url')); + + load_hooks(); + +}
\ No newline at end of file |