예제 #1
0
파일: plugin.php 프로젝트: omusico/Social
<?php

include dirname(__FILE__) . "/../foundation/fgetandpost.php";
$do = get_args("do");
$action = explode("_iweb_", $do);
if (count($action) == 2) {
    include "Actions.php";
    $actions = Actions::getInstance($action[0]);
    $actions->doAction($action[1]);
}