[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
Zen Cart 源代码 alt_nav.php

Zen Cart 源代码 alt_nav.php




下载文件

文件名: alt_nav.php
文件类型: PHP文件
文件大小: 1.65 KiB
MD5: 2613cacce070e34490d982e947377fb7

alt_nav.php - 关闭高亮
  1. <?php
  2. /**
  3.  * @package admin
  4.  * @copyright Copyright 2003-2013 Zen Cart Development Team
  5.  * @copyright Portions Copyright 2003 osCommerce
  6.  * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
  7.  * @version GIT: $Id: Author: DrByte  Sat Jun 1 13:30:37 2013 -0400 Modified in v1.5.2 $
  8.  */
  9. require('includes/application_top.php');
  10. ?>
  11. <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
  12. <html <?php echo HTML_PARAMS; ?>>
  13. <head>
  14. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
  15. <title><?php echo TITLE; ?></title>
  16. <meta name="robots" content="noindex, nofollow" />
  17. <script src="includes/menu.js" type="text/javaScript"></script>
  18. <link href="includes/stylesheet.css" rel="stylesheet" type="text/css" />
  19. <link rel="stylesheet" type="text/css" href="includes/cssjsmenuhover.css" media="all" id="hoverJS" />
  20. </head>
  21. <body onLoad="cssjsmenu('navbar')">
  22. <!-- header //-->
  23. <?php require(DIR_WS_INCLUDES . 'header.php'); ?>
  24. <!-- header_eof //-->
  25. <div id="alt_nav">
  26. <h1><?php echo HEADING_TITLE ?></h1>
  27.  
  28. <?php
  29.  foreach (zen_get_admin_menu_for_user() as $menuKey => $pages)
  30.  {
  31.    $pageList = array();
  32.    foreach ($pages as $page)
  33.    {
  34.       $pageList[] = '<a href="' . zen_href_link($page['file'], $page['params']) . '">' . $page['name'] . '</a>';
  35.    }
  36. ?>
  37.   <div>
  38.     <h2><?php echo $menuTitles[$menuKey] ?></h2>
  39.     <p><?php echo implode(', ', $pageList) ?>.</p>
  40.   </div>
  41. <?php
  42.  }
  43. ?>
  44. </div>
  45.  
  46. <!-- body_eof //-->
  47. <!-- footer //-->
  48. <?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
  49. <!-- footer_eof //-->
  50. <br>
  51. </body>
  52. </html>
  53. <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
  54.  


cron