Changeset 6844
- Timestamp:
- 09/26/08 13:15:51 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.5/amp_conf/htdocs/admin/panel.php
r6491 r6844 19 19 include 'header.php'; 20 20 21 showview('panel', array('title'=>$title, 'deptname' => $_SESSION["AMP_user"]->_deptname)); 21 $template['amp_conf'] = &$amp_conf; 22 23 showview('panel', array('title'=>$title, 'deptname' => $_SESSION["AMP_user"]->_deptname, 'amp_conf' => &$amp_conf)); 22 24 ?> freepbx/branches/2.5/amp_conf/htdocs/admin/views/freepbx.php
r6601 r6844 165 165 print_sub_tool( _("Admin") , "config.php", $currentFile=='config.php' ); 166 166 print_sub_tool( _("Reports") , "reports.php", $currentFile=='reports.php' ); 167 if(!$amp_conf["FOPDISABLE"]) {168 print_sub_tool( _("Panel") , "panel.php", $currentFile=='panel.php' );167 if(!$amp_conf["FOPDISABLE"]) { 168 print_sub_tool( _("Panel"), "panel.php", $currentFile=='panel.php' ); 169 169 } 170 170 print_sub_tool( _("Recordings"), "../recordings/index.php" ,0, NULL, "ari" ); freepbx/branches/2.5/amp_conf/htdocs/admin/views/panel.php
r4993 r6844 1 1 <?php 2 2 3 $template['amp_conf'] = &$amp_conf; 3 4 $template['title'] = $title; 4 5 $template['content'] =
