-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.php
54 lines (53 loc) · 985 Bytes
/
start.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
49
50
51
52
53
54
<?php
/**
* @author carl
*/
define('THOSTS', __DIR__);
define('LIB', THOSTS . '/lib');
define('PUBPATH', THOSTS . '/public');
define('SOURCE', PUBPATH . '/source');
define('CONFIG_PATH', SOURCE . '/config.php');
define('HOSTS_PATH', SOURCE . '/hosts');
include LIB . '/hosts.class.php';
$hostsObj = new Hosts;
switch ($_GET['act']) {
case 'get':
{
$hostsObj->getHosts();
break;
}
case 'getarea':
{
$hostsObj->getTextareaHosts();
break;
}
case 'save':
{
$hostsObj->saveHosts();
break;
}
case 'envCreate':
{
$hostsObj->createHostsApi();
break;
}
case 'envList' :
{
$hostsObj->getHostsConfListApi();
break;
}
case 'envChange' :
{
$hostsObj->envChangeApi();
break;
}
case 'envDelete' :
{
$hostsObj->envDelApi();
break;
}
default :
{
Header('Location:./index.html');
}
}