-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
48 lines (36 loc) · 1.32 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
function AddIncludePath($path)
{
ini_set("include_path", ini_get("include_path") . ":" . $path );
}
// Until we've properly configured autoload...
AddIncludePath('./lib/RestServer/');
AddIncludePath('./lib/Storage/');
AddIncludePath('./lib/Storage/MySQL/');
AddIncludePath('./lib/Storage/SimpleDB/');
AddIncludePath('./lib/');
AddIncludePath('./Controllers/');
AddIncludePath('./Model/');
require_once 'Tools.php';
require_once 'UUID.php';
require_once 'RestServer.php';
require_once 'StorageBase.php';
require_once 'SqlStorageBase.php';
require_once 'StorageTools.php';
require_once 'MySqlStorage.php';
require_once 'SimpleDbStorage.php';
require_once 'sdb.php';
require_once 'ModelObject.php';
require_once 'Reminder.php';
require_once 'User.php';
require_once 'ControllerBase.php';
require_once 'ReminderController.php';
require_once 'UserController.php';
require_once 'config.php';
Tools::SafeDefine("ApplicationVersion", "1.01");
//spl_autoload_register(); // don't load our classes unless we use them
$server = new RestServer($RestServerMode);
// $server->refreshCache(); // uncomment momentarily to clear the cache if classes change in production mode
$server->addClass("ReminderController");
//$server->addClass('ProductsController', '/products'); // adds this as a base to all the URLs in this class
$server->handle();