13 lines
582 B
PHP
13 lines
582 B
PHP
<?php
|
|
|
|
require_once 'system/autoload.inc'; //SYSTEM Classes
|
|
require_once 'redestoff/autoload.inc.php'; //Project Classes
|
|
|
|
require_once 'config.php';
|
|
\SYSTEM\system::start($redestoff_config);
|
|
\SYSTEM\system::include_ExceptionShortcut();
|
|
\SYSTEM\system::include_ResultShortcut();
|
|
\SYSTEM\system::register_errorhandler_dbwriter();
|
|
\SYSTEM\system::register_errorhandler_jsonoutput();
|
|
|
|
echo \SYSTEM\API\api::run('\SYSTEM\API\verify','page_redestoff',array_merge($_POST,$_GET),1,false,true)->html(); |