-
Notifications
You must be signed in to change notification settings - Fork 0
/
format_ops_by_day.php
37 lines (29 loc) · 1008 Bytes
/
format_ops_by_day.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Operating Sessions vs Day</title>
<link href="layouts.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h2>Operating Session vs Day</h2>
<a href="index.php">Back to main page</a>
<p>
<?php
require_once('access.php');
require_once('utilities.php');
require_once('formatting.php');
require_once('parsers.php');
// Over-ride globals for full visibility here
$event_tools_show_min_value = 0;
$event_tools_replace_on_data_warn = TRUE; // TRUE replace with text, FALSE leave as is
$event_tools_replace_on_data_error = TRUE; // TRUE replace with text, FALSE leave as is
$where = parse_layout_query();
$order = parse_order();
if ($where == NULL) $where = "";
if ($where != "") $where = " WHERE ".$where;
format_all_ops_by_day("edit_layouts_all.php?layoutid=", $where, $order);
?>
</body>
</html>