<?php
//$Header: /cvsroot/tsheet/timesheet.php/stopwatch.php,v 1.6 2005/05/24 03:15:05 vexil Exp $
// Authenticate
require("class.AuthenticationManager.php");
require("class.CommandMenu.php");
if (!$authenticationManager->isLoggedIn()) {
Header("Location: login.php?redirect=$_SERVER[PHP_SELF]");
exit;
}
// Connect to database.
$dbh = dbConnect();
$contextUser = strtolower($_SESSION['contextUser']);
//load local vars from superglobals
$proj_id = isset($_REQUEST["proj_id"]) ? $_REQUEST["proj_id"]: 0;
$task_id = isset($_REQUEST["task_id"]) ? $_REQUEST["task_id"]: 0;
$client_id = isset($_REQUEST["client_id"]) ? $_REQUEST["client_id"]: 0;
$destination = $_REQUEST["destination"];
//check that the client id is valid
//if ($client_id == 0)
// $client_id = getFirstClient();
//check that project id is valid
if ($proj_id == 0)
$task_id = 0;
?>
<html>
<head>
<title><?php echo $contextUser; ?> Stopwatch</title>
<?php
include ("header.inc");
include("client_proj_task_javascript.inc");
?>
<script language="javascript">
function doClockonoff(clockon) {
document.mainForm.clockonoff.value = clockon;
onSubmit();
}
function resizePopupWindow() {
//now resize the window
var outerTable = document.getElementById('outer_table');
var innerWidth = window.innerWidth;
var outerWidth = window.outerWidth;
if (innerWidth == null || outerWidth == null) {
innerWidth = document.body.offsetWidth;
outerWidth = innerWidth + 28;
}
var innerHeight = window.innerHeight;
var outerHeight = window.outerHeight;
if (innerHeight == null || outerHeight == null) {
innerHeight = document.body.offsetHeight;
outerHeight = innerHeight + 30;
}
var newWidth = outerTable.offsetWidth + outerWidth - innerWidth;
var newHeight = outerTable.offsetHeight + outerHeight - innerHeight;
window.resizeTo(newWidth, newHeight);
}
</script>
</head>
<body style="margin: 0;" class="face_padding_cell" <?php include ("body.inc"); ?> onload="doOnLoad();">
<table width="100%" align="center" border="0" cellpadding="0" cellspacing="0" id="outer_table">
<tr>
<td width="100%" class="face_padding_cell">
<!-- include the timesheet face up until the heading start section -->
<?php include("timesheet_face_part_1.inc"); ?>
<table width="100%" border="0">
<tr>
<td align="left" nowrap class="outer_table_heading" nowrap>
Clock On / Off Now
</td>
</tr>
</table>
<?php
$stopwatch = 1;
$year = $realToday["year"];
$month = $realToday["mon"];
$day = $realToday["mday"];
$fromPopup = "true";
include("clockOnOff_core.inc");
?>
</td>
</tr>
</table>
</body>
</html>
<?php
// vim:ai:ts=4:sw=4
?>