예제 #1
0
<!doctype html>
<html>
  <?php 
require_once "controllers/dbmanager.php";
require_once "models/time.php";
require_once "models/player.php";
$dbManager = new DBManager();
$playerID = 1;
$dbManager->setPlayer($playerID);
print_r($_POST);
if (isset($_POST["task"])) {
    $dbManager->doTaskForPerson($_POST["taskid"]);
} else {
    echo "IM NOT SET";
}
$day = $dbManager->getDay();
$hour = $dbManager->getHour();
$name = $dbManager->getName();
$location = $dbManager->getLocation();
$avalableTasks = $dbManager->fetchTaskList($location);
$timeLeft = $dbManager->getMinutes();
$rooms = array("IT", "Reception", "Bathroom", "BreakRoom", "CustomerSupport", "HR", "BossOffice", "Lobby", "CopyRoom", "BoardRoom");
$showModal = false;
?>
<head>

    <!--<meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />-->
    <meta name="viewport" content="initial-scale = 1.0,maximum-scale = 1.0" />

    <!-- Bootstrap -->
예제 #2
0
파일: select.php 프로젝트: itsbriany/OCDOC
                    } else {
                        if (strtolower($newLocation) == 'hr') {
                            $Numericallocation = 5;
                        } else {
                            if (strtolower($newLocation) == 'bossoffice') {
                                $Numericallocation = 6;
                            } else {
                                if (strtolower($newLocation) == 'lobby') {
                                    $Numericallocation = 7;
                                } else {
                                    if (strtolower($newLocation) == 'copyroom') {
                                        $Numericallocation = 8;
                                    } else {
                                        $Numericallocation = 9;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    $dbManager->move($Numericallocation);
    echo $newLocation;
}
if (isset($_POST["blah"])) {
    $dbManager = new DBManager();
    $playerID = $dbManager->setPlayer(1);
    echo $dbManager->getMinutes();
}