dbclean is restructured

This commit is contained in:
Michael Vogel 2016-10-22 04:57:52 +00:00
parent bc324c3ef4
commit 31409e2ca1
1 changed files with 21 additions and 14 deletions

View File

@ -5,24 +5,26 @@
*/ */
require_once("boot.php"); require_once("boot.php");
global $a, $db; function dbclean_run(&$argv, &$argc) {
global $a, $db;
if(is_null($a)) if(is_null($a))
$a = new App; $a = new App;
if(is_null($db)) { if(is_null($db)) {
@include(".htconfig.php"); @include(".htconfig.php");
require_once("include/dba.php"); require_once("include/dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data); $db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data); unset($db_host, $db_user, $db_pass, $db_data);
}
load_config('config');
load_config('system');
remove_orphans();
killme();
} }
load_config('config');
load_config('system');
remove_orphans();
killme();
/** /**
* @brief Remove orphaned database entries * @brief Remove orphaned database entries
*/ */
@ -68,4 +70,9 @@ function remove_orphans() {
logger("Done deleting orphaned data from tables"); logger("Done deleting orphaned data from tables");
} }
if (array_search(__file__,get_included_files())===0){
dbclean_run($_SERVER["argv"],$_SERVER["argc"]);
killme();
}
?> ?>