<?php /** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE_AFL.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@magentocommerce.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade Magento to newer * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * * @category design * @package base_default * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> <?php /** * Top menu for store * * @see Mage_Page_Block_Html_Topmenu */ ?> <?php $_menu = $this->getHtml('level-top') ?> <?php $catalogSearchHelper = $this->helper('catalogsearch'); ?> <!-- mp-menu --> <nav id="mp-menu" class="mp-menu"> <div class="mp-level"> <ul class="mp-login"> <li> <?php if (!Mage::getSingleton('customer/session')->isLoggedIn()){ echo '<a href="'. Mage::helper('customer')->getLoginUrl() . '" class="first js-authenticate">' . $this->__('Log in') . '</a>'; echo '/'; echo '<a href="'. Mage::helper('customer')->getRegisterUrl() . '" class="js-authenticate">' . $this->__('Sign in') . '</a>'; } else { echo '<a href="'. Mage::helper('customer')->getLogoutUrl() . '" class="first">' . $this->__('Log out') . '</a>'; } ?> </li> <li> <form id="search_mpmenu_form" action="<?php echo $catalogSearchHelper->getResultUrl() ?>" method="get"> <div class="form-search"> <div class="input-group"> <input id="search" type="text" name="<?php echo $catalogSearchHelper->getQueryParamName() ?>" value="<?php echo $catalogSearchHelper->getEscapedQueryText() ?>" class="input-text form-control" maxlength="<?php echo $catalogSearchHelper->getMaxQueryLength();?>"> <span class="input-group-btn"> <button type="submit" title="<?php echo $this->__('Search') ?>" class="btn btn-default"><span><span><?php echo $this->__('Search') ?></span></span></button> </span> </div> <div id="search_autocomplete" class="search-autocomplete"></div> <script type="text/javascript"> //<![CDATA[ var searchForm = new Varien.searchForm('search_mpmenu_form', 'search', '<?php echo $this->__('Search') ?>'); searchForm.initAutocomplete('<?php echo $catalogSearchHelper->getSuggestUrl() ?>', 'search_autocomplete'); //]]> </script> </div> </form> </li> </ul> <ul> <li class="icon <?php if ( Mage::getBlockSingleton('page/html_header')->getIsHomePage() ) { echo 'active'; } ?>"> <a href="<?php echo $this->getUrl('')?>"> <?php echo $this->__('Home') ?> </a> </li> <?php if ($_menu): ?> <?php echo $_menu ?> <?php endif; ?> <li class="icon <?php echo (preg_match("/\/customer\/account\/$/", Mage::helper('core/url')->getCurrentUrl(), $results)) ? "active" : ""; ?>"> <a href="<?php echo Mage::getBaseUrl() . "customer/account/"; ?>"> <?php echo $this->__('My account'); ?> </a> </li> <li class="icon <?php echo (strstr(Mage::helper('core/url')->getCurrentUrl(),"/wishlist/")) ? "active" : ""; ?>""> <a href="<?php echo Mage::getBaseUrl() . "wishlist/"; ?>"> <?php echo $this->__('My wishlist'); ?> </a> </li> </ul> </div> </nav> <div class="container"> <div id="mainnav"> <nav class="navbar navbar-default navbar-main" role="navigation"> <div class="navbar-header"> <button type="button" class="navbar-toggle" id="trigger"> <span class="sr-only"><?php echo $this->__('Toggle Navigation') ?></span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <button type="button" class="navbar-toggle header-cart-qty pull-right"> <a href="<?php echo $this->getUrl('checkout/cart')?>"> <?php $cart = Mage::getModel('checkout/cart')->getQuote()->getData(); if (isset($cart['items_qty'])){ echo '<span class="item-number-notification-clean">' . (int)$cart['items_qty'] . '</span>'; } else { echo '<span class="item-number-notification-clean">0</span>'; } ?> <i class="fa fa-shopping-cart"></i> </a> </button> <h1 class="logo visible-xs"> <strong><?php echo $this->getLogoAlt() ?></strong> <a href="<?php echo $this->getUrl('') ?>" title="<?php echo $this->getLogoAlt() ?>" class="logo"> <?php echo $this->__('Logo Store'); ?> <!-- <img src="--><?php //echo $this->getLogoSrc() ?><!--" alt="--><?php //echo $this->getLogoAlt() ?><!--" />--> </a> </h1> </div> <div class="collapse navbar-collapse navbar-main-collapse"> <ul class="nav navbar-nav"> <li class="<?php if ( Mage::getBlockSingleton('page/html_header')->getIsHomePage() ) { echo 'active'; } ?>"> <a href="<?php echo $this->getUrl('')?>"> <?php echo $this->__('Home') ?> </a> </li> <?php if ($_menu): ?> <?php echo $_menu ?> <?php endif; ?> <li class="<?php echo (preg_match("/\/customer\/account\/$/", Mage::helper('core/url')->getCurrentUrl(), $results)) ? "active" : ""; ?>"> <a href="<?php echo Mage::getBaseUrl() . "customer/account/"; ?>"> <?php echo $this->__('My account'); ?> </a> </li> <li class="<?php echo (strstr(Mage::helper('core/url')->getCurrentUrl(),"/wishlist/")) ? "active" : ""; ?>""> <a href="<?php echo Mage::getBaseUrl() . "wishlist/"; ?>"> <?php echo $this->__('My wishlist'); ?> </a> </li> <li class="<?php echo (strstr(Mage::helper('core/url')->getCurrentUrl(),"/customer/account/login")) ? "active" : ""; ?>"> <?php if (!Mage::getSingleton('customer/session')->isLoggedIn()){ echo '<a href="'. Mage::helper('customer')->getLoginUrl() . '" class="js-authenticate">' . $this->__('Log in') . '</a>'; } else { echo '<a href="'. Mage::helper('customer')->getLogoutUrl() . '">' . $this->__('Log out') . '</a>'; } ?> </li> </ul> </div> </nav> </div> </div>