-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathip_layout_tours.php
48 lines (39 loc) · 1.9 KB
/
ip_layout_tours.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
38
39
40
41
42
43
44
45
46
47
48
<!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><?php require_once('access.php'); echo $event_tools_event_name; ?> Layout Tours</title>
<style type="text/css">
.et-tour-name { font-family: Tahoma, sans-serif; font-weight:bold; font-size: 12pt;}
.et-tour-number { font-family: Tahoma, sans-serif; font-weight:bold; font-size: 12pt;}
.et-tour-tr2 { font-family: Tahoma, sans-serif; font-size: 11pt; font-weight:bold; }
.et-tour-tr3 { font-family: Tahoma, sans-serif; font-size: 10pt; font-weight:bold; }
.et-tour-tr4 { font-family: Tahoma, sans-serif; font-size: 10pt; font-weight:bold; }
/** hide tour status */
.et-tour-status { color: #FFFFFF; font-style:normal; }
a:link.status_link { color: #FFFFFF; font-style:normal; }
a:visited.status_link { color: #FFFFFF; font-style:normal; }
a:hover.status_link { color: #FFFFFF; font-style:normal; }
a:active.status_link { color: #FFFFFF; font-style:normal; }
/** try to fix layout size **/
table.et-tour { width: 100%; margin-top: 15px; margin-bottom: 15px; }
td.et-tour-td1 { width: 13%; text-align: left; }
td.et-tour-td2 { width: 12%; text-align: left; }
td.et-tour-td3 { width: 13%; text-align: left; }
td.et-tour-td4 { width: 12%; text-align: left; }
td.et-tour-td5 { width: 13%; text-align: left; }
td.et-tour-td6 { width: 12%; text-align: left; }
td.et-tour-td7 { width: 13%; text-align: left; }
td.et-tour-td8 { width: 12%; text-align: left; }
td.et-tour-td2 { width: 13%; text-align: right; }
</style></head><body>
<?php
require_once('access.php');
require_once('utilities.php');
require_once('formatting.php');
require_once('parsers.php');
$where = parse_layout_tour_query();
$order = parse_order();
format_all_layout_tours_as_8table($where,$order,"format_all_layouts.php?layoutid=");
?>
</body>
</html>