<?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@magento.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.magento.com for more information.
 *
 * @category    design
 * @package     base_default
 * @copyright   Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
 * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
?>
<?php
/**
 * Currency switcher
 *
 * @see Mage_Directory_Block_Currency
 */
?>
<?php if($this->getCurrencyCount()>1): ?>
    <?php if(Mage::helper('themeframework/settings')->getGeneral_CurrencyStyle() == 'list'):?>    
        <div class="block block-currency em-currency-style01">
            <div class="block-content">
                <ul>
                <?php foreach ($this->getCurrencies() as $_code => $_name): ?>
                    <li class="<?php if($_code==$this->getCurrentCurrencyCode()): ?> selected<?php endif; ?>">
                        <a href="<?php echo $this->getSwitchCurrencyUrl($_code) ?>">
                            <?php echo $_code ?>
                         </a>
                    </li>
                <?php endforeach; ?>
                </ul>
            </div>
        </div>
    <?php else:?>
    <div class="toolbar-switch em-currency-style02 block-currency">
        <div class="toolbar-title">
            <select id="em-currency-mobile" name="currency" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Select Your Currency')) ?>" onchange="setLocation(this.value)">
            <?php foreach ($this->getCurrencies() as $_code => $_name): ?>
                <option value="<?php echo $this->getSwitchCurrencyUrl($_code) ?>"<?php if($_code==$this->getCurrentCurrencyCode()): ?> selected="selected"<?php endif; ?>>
                    <?php echo $_code ?>
                </option>
            <?php endforeach; ?>
            </select>
        </div>
    </div>
    <script type="text/javascript">
    //<![CDATA[
        (function($) {
            $(document).ready(function(){            
                $('#em-currency-mobile').selectpicker();         
            });
        })(jQuery);
    //]]>
    </script>
    <?php endif; ?>
<?php endif;?>
