root/freepbx/branches/2.3/amp_conf/htdocs/admin/views/reports.php

Revision 4395, 0.6 kB (checked in by gregmac, 6 years ago)

Merged 2.3.newcss branch to 2.3, modified to work with views system:

Merged revisions 4329-4394 via svnmerge from
https://amportal.svn.sourceforge.net/svnroot/amportal/freepbx/branches/2.3.newcss

........

r4329 | fool4kate | 2007-07-09 13:33:58 -0700 (Mon, 09 Jul 2007) | 2 lines


Temporary branch for new FreePBX logo and style sheet.

........

r4330 | p_lindheimer | 2007-07-09 13:47:46 -0700 (Mon, 09 Jul 2007) | 3 lines


Initialized merge tracking via "svnmerge" with revisions "1-4328" from
https://amportal.svn.sourceforge.net/svnroot/amportal/freepbx/branches/2.3

........

r4331 | fool4kate | 2007-07-09 15:38:44 -0700 (Mon, 09 Jul 2007) | 2 lines


Generated new style sheet for new FreePBX logo.

........

r4334 | fool4kate | 2007-07-09 19:53:55 -0700 (Mon, 09 Jul 2007) | 2 lines


Added our happy frog as the default logo

........

Line 
1 <?php
2
3 $template['title'] = $title;
4 $template['content'] = '';
5
6 $template['content'] .= "<div id=\"reportnav\" ><ul>";
7 foreach ($menu  as $key=>$value) {
8     $template['content'] .= "<li><nobr><a id=\"".(($display==$key) ? 'current':'')."\" href=\"reports.php?display=".$key."\">".$value."</a><nobr></li>";
9 }
10 $template['content'] .= "</ul></div>";
11
12 $template['content'] .=
13     '<div>'.
14     '<iframe width="97%" height="2000" frameborder="0" align="top" scrolling="auto" src="cdr/cdr.php?s='.$display.($display=='1' ? '&posted=1' : '').'"></iframe>'.
15     '</div>';
16 showview('freepbx', $template);
17
18 ?>
Note: See TracBrowser for help on using the browser.