Add analytics
[bus.git] / busui / owa / modules / base / templates / report_visit.tpl
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
<div class="owa_reportSectionHeader">Visit Summary</div>
<div class="owa_reportSectionContent">
	<?php include('report_latest_visits.tpl');?>
</div>	

<div class="owa_reportSectionHeader">Visit Clickstream</div>
<div class="owa_reportSectionContent">  
  

		<div>		
			<table size="100%">
				<TR>
					<TH>Time</TH>
					<TH>Page</TH>
				</TR>
				<?php foreach($clickstream->resultsRows as $s): ?>
				<TR>
					<TD colspan="2">
						<table class="owa_infobox" size="100%">
							<TR>
								<TD valign="top"><?php echo $s['hour'];?>:<?php echo $s['minute'];?>:<?php echo $s['second'];?></TD>
								<TD>
									<a href="<?php echo $this->makeLink(array('do' => 'base.reportDocument', 'document_id' => $s['document_id']));?>"><span class="inline_h2"><?php echo $s['page_title'];?></span></a> <span class="h_label">(<?php echo $s['page_type'];?>)</span><BR>
									<span class="info_text"><?php echo $s['url'];?></span>
								</TD>
							</TR>
						</table>
					</TD>
				</TR>
				<?php endforeach; ?>
			</table>
		</div>
</div>