2008-05-08 01:48:07 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
define('INSTALLDIR', dirname(__FILE__));
|
2008-05-15 04:00:09 +09:00
|
|
|
define('MICROBLOG', true);
|
2008-05-08 01:48:07 +09:00
|
|
|
|
|
|
|
require_once(INSTALLDIR . "/common.php");
|
|
|
|
|
|
|
|
$action = $_REQUEST['action'];
|
|
|
|
$actionfile = INSTALLDIR."/actions/$action.php";
|
|
|
|
|
|
|
|
if (file_exists($actionfile)) {
|
|
|
|
require_once($actionfile);
|
2008-05-14 23:54:36 +09:00
|
|
|
$action_class = ucfirst($action) . "Action";
|
2008-05-08 01:48:07 +09:00
|
|
|
if (function_exists($action_function)) {
|
|
|
|
call_user_func($action_function);
|
|
|
|
} else {
|
|
|
|
// redirect to main
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|