public static function show()
 {
     $_SESSION['headertitle'] = "Create botspace objects";
     MasterView::showHeader();
     CreateView::showDetails();
     MasterView::showFooter();
 }
 public static function show()
 {
     $_SESSION['headertitle'] = "Create botspace objects";
     $_SESSION['styles'] = array('site.css');
     MasterView::showHeader();
     MasterView::showNavBar();
     CreateView::showDetails();
     MasterView::showFooter();
     MasterView::showPageEnd();
 }
Example #3
0
//print_r("base=".$base.",control=".$control.",action=".$action.",args=".$arguments);
switch ($control) {
    case "login":
        LoginController::run();
        break;
    case "signup":
        SignupController::run();
        break;
    case "profile":
        ProfileController::run();
        break;
    case "mystery":
        RobotProfileController::run();
        break;
    case "create":
        CreateView::show();
        break;
    case "show":
        ShowView::show();
        break;
    case "user":
        UserController::run();
        break;
    case "userdata":
        UserDataController::run();
        break;
    case "skill":
        SkillController::run();
        break;
    case "skillassoc":
        SkillAssocController::run();