-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.php
31 lines (22 loc) · 824 Bytes
/
action.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
<?php
include('engine.php');
$action = $_REQUEST['action'];
$subaction = (isset($_REQUEST['subaction']) ? $_REQUEST['subaction'] : '');
if(!class_exists($action)){
echo '<error id="01">Fatal error: action "'.$action.'" does not exist</error>';
exit;
}
$action = new $action();
if(!method_exists($action, $subaction)){
$subaction = 'main';
}
if(!method_exists($action, $subaction)){
echo '<error id="02">Fatal error: level "'.$_REQUEST['action'].'->'.$subaction.'" does not exist</error>';
exit;
}
//$action->db = new PDO(''); //uitilize your database driver
//$action->conf = loadconf(); //load your configurations
//$action->path = createsymlinks(); //create your file paths and urls
$action->param = (isset($_REQUEST['param']) ? $_REQUEST['param'] : '');
$action->$subaction();
?>