Пример #1
0
                <!-- Currency & Languages Starts -->
                    <div class="col-sm-4 col-xs-12">

                        <div class="pull-right">

                            <!-- Currency Starts -->
                            <div class="btn-group">
                                <button class="btn btn-link dropdown-toggle" data-toggle="dropdown">
                                    <?php 
echo $this->translate("Currency");
?>
                                    <i class="fa fa-caret-down"></i>
                                </button>
                                <ul class="pull-right dropdown-menu">
                                    <?php 
foreach (\CoreShop\Model\Currency::getAvailable() as $currency) {
    ?>
                                    <li><a tabindex="-1" href="<?php 
    echo $this->url(array("currency" => $currency->getId()));
    ?>
"><?php 
    echo $currency->getName();
    ?>
 </a></li>
                                    <?php 
}
?>
                                </ul>
                            </div>
                        <!-- Currency Ends -->