This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/ajax.php

62 lines
1.6 KiB
PHP
Raw Normal View History

<?php
/**
* AgileBill - Open Billing Software
*
* This body of work is free software; you can redistribute it and/or
* modify it under the terms of the Open AgileBill License
* License as published at http://www.agileco.com/agilebill/license1-4.txt
2009-08-03 04:10:16 +00:00
*
* Originally authored by Tony Landis, AgileBill LLC
* Recent modifications by Deon George
*
* @author Deon George <deonATleenooksDOTnet>
* @copyright 2009 Deon George
* @link http://osb.leenooks.net
*
* @link http://www.agileco.com/
* @copyright 2004-2008 Agileco, LLC.
* @license http://www.agileco.com/agilebill/license1-4.txt
2009-08-03 04:10:16 +00:00
* @author Tony Landis <tony@agileco.com>
* @package AgileBill
2009-08-03 04:10:16 +00:00
* @subpackage Core
*/
/**
* The main AgileBill AJAX rendering
*/
2009-08-03 04:10:16 +00:00
ob_start();
define('AJAX',1);
require_once('config.inc.php');
2009-08-03 04:10:16 +00:00
require_once('modules/module.inc.php');
require_once('modules/core/vars.inc.php');
2009-08-03 04:10:16 +00:00
$C_vars = new CORE_vars;
$VAR = $C_vars->f;
require_once('includes/adodb/adodb.inc.php');
require_once(PATH_CORE.'auth.inc.php');
require_once(PATH_CORE.'database.inc.php');
require_once(PATH_CORE.'method_ajax.inc.php');
require_once(PATH_CORE.'session.inc.php');
require_once(PATH_CORE.'setup.inc.php');
require_once(PATH_CORE.'xml.inc.php');
$C_debug = new CORE_debugger;
$C_setup = new CORE_setup;
$C_sess = new CORE_session;
$C_sess->session_constant();
$C_method = new CORE_method;
if ((isset($VAR['_login'])) && (isset($VAR['_username'])) && (isset($VAR['_password']))) {
2009-08-03 04:10:16 +00:00
require_once(PATH_CORE.'login.inc.php');
$C_login = new CORE_login_handler();
$C_login->login($VAR);
2009-08-03 04:10:16 +00:00
}
2009-08-03 04:10:16 +00:00
$C_sess->session_constant_log();
$C_auth = new CORE_auth(false);
$C_method->do_all();
ob_end_flush();
?>