ZenCart_Documentation  1.5.0
http://www.collinsharper.com
C:/xampp/htdocs/zen-cart/admin/alt_nav.php
Go to the documentation of this file.
00001 <?php
00009 require('includes/application_top.php');
00010 ?>
00011 <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
00012 <html <?php echo HTML_PARAMS; ?>>
00013 <head>
00014 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
00015 <title><?php echo TITLE; ?></title>
00016 <meta name="robot" content="noindex, nofollow" />
00017 <script src="includes/menu.js" type="text/javaScript"></script>
00018 <link href="includes/stylesheet.css" rel="stylesheet" type="text/css" />
00019 <link rel="stylesheet" type="text/css" href="includes/cssjsmenuhover.css" media="all" id="hoverJS" />
00020 </head>
00021 <body onLoad="cssjsmenu('navbar')">
00022 <!-- header //-->
00023 <?php require(DIR_WS_INCLUDES . 'header.php'); ?>
00024 <!-- header_eof //-->
00025 <div id="alt_nav">
00026 <h1><?php echo HEADING_TITLE ?></h1>
00027 
00028 <?php
00029  foreach (zen_get_admin_menu_for_user() as $menuKey => $pages)
00030  {
00031    $pageList = array();
00032    foreach ($pages as $page)
00033    {
00034          $pageList[] = '<a href="' . zen_href_link($page['file'], $page['params']) . '">' . $page['name'] . '</a>';
00035    }
00036 ?>
00037   <div>
00038     <h2><?php echo $menuTitles[$menuKey] ?></h2>
00039     <p><?php echo implode(', ', $pageList) ?>.</p>
00040   </div>
00041 <?php
00042  }
00043 ?>
00044 </div>
00045 
00046 <!-- body_eof //-->
00047 <!-- footer //-->
00048 <?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
00049 <!-- footer_eof //-->
00050 <br>
00051 </body>
00052 </html>
00053 <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
 All Data Structures Namespaces Files Functions Variables Enumerations