Add analytics
[bus.git] / busui / owa / modules / base / templates / sites.tpl
maxious 1 <DIV class="panel_headline"><?php echo $headline;?></DIV>
2 <DIV id="panel">
3 <P>Below is the list of Web Sites that can be tracked. A site must appear in this list
4 if it is to be tracked/reported separately.</P>
5
6 <fieldset>
7 <legend>Tracked Web Sites <span class="legend_link">(<a href="<?php echo $this->makeLink(array('do' => 'base.sitesProfile'));?>">Add a Site</a>)<span></legend>
8
9
10 <TABLE width="100%" border="0" class="management">
11 <thead>
12 <TR>
13 <TH>Name & Description</TH>
14
15 <TH>Options</TH>
16 </TR>
17 </thead>
18 <tbody>
19 <?php foreach ($tracked_sites as $site => $value):?>
20 <TR>
21 <TD>
22 <span style="font-size:14px; font-weight:bold;">
23 <a href="<?php echo $this->makeLink( array('do' => 'base.reportDashboard', 'siteId' => $value['site_id'] ), false );?>"><?php $this->out( $value['name'] );?></a>
24 </span><BR>
25 <?php if (!empty($value['description'])):?>
26 <span class="info_text"><?php $this->out( $value['description'] );?></span><BR>
27 <?php endif;?>
28 <span class="info_text"><?php $this->out( $value['domain'] );?></span><BR>
29 </TD>
30
31 <TD>
32 <a href="<?php echo $this->makeLink( array('do' => 'base.sitesProfile', 'siteId' => $value['site_id'], 'edit' => true ) );?>">Edit</a> |
33 <a href="<?php echo $this->makeLink( array('do' => 'base.sitesDelete', 'siteId' => $value['site_id'] ), false, false, false, true );?>">Delete</a> |
34 <a href="<?php echo $this->makeLink( array('do' => 'base.sitesInvocation', 'siteId' => $value['site_id'] ) );?>">Get Tracking Code</a> |
35 <a href="<?php echo $this->makeLink( array('do' => 'base.optionsGoals', 'siteId' => $value['site_id'] ) );?>">Goals</a>
36 </TD>
37
38 </TR>
39 <?php endforeach;?>
40 </tbody>
41 </TABLE>
42
43 </fieldset>
44 </div>
45