Changes API.

This commit is contained in:
Lars Jung 2012-10-08 01:16:02 +02:00
parent d6c5696f96
commit 811994423d
7 changed files with 248 additions and 246 deletions

View file

@ -21,4 +21,12 @@ normalized_require_once("/server/php/inc/Entry.php");
$APP = new App(APP_ABS_PATH, APP_ABS_HREF, ABS_HREF);
if (array_key_exists("api", $_REQUEST)) {
use_request_params("api");
normalized_require_once("/server/php/inc/Api.php");
$api = new Api($APP);
$api->apply();
}
?>