13 lines
658 B
PHP
13 lines
658 B
PHP
<?php
|
|
require_once 'lib/system/autoload.inc'; //SYSTEM Classes
|
|
require_once 'neopolimatrix/autoload.inc'; //Project Classes
|
|
require_once '/home/web/web/config/get_config.php';
|
|
|
|
\SYSTEM\system::start(\WEBCRAFT\get_config(dirname(__FILE__)));
|
|
\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','api_neopolimatrix',array_merge($_POST,$_GET));
|
|
new \SYSTEM\LOG\COUNTER("API was called sucessfully."); |