ok

Mini Shell

Direktori : /home2/selectio/www/application/views/partials/
Upload File :
Current File : //home2/selectio/www/application/views/partials/_top_bar.php

<style>
    .top-bar .navbar-nav .nav-item .auth-sep {
    float: left;
    line-height: 20px;
    color: #ecf1f1;
    font-size: 13px;
    margin: 0 8px;
    } 
    .top-bar .navbar-nav .nav-item .nav-link {
    float: left;
    line-height: 21px;
    font-size: 14px;
    padding: 0;
    position: relative;
    color: white;
    font-weight: 600;

}
@media (max-width: 768px){
    #wrapper{
        padding-top: 30px;
        margin-top: -24%;
    }
}
</style>
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<div class="top-bar" style="margin-top: 0px;">
<div class="container-fluid" style="background: #ee7eaf;">
<div class="row">
<div class="col-6 col-left">
<?php if (!empty($this->menu_links)): ?>
<ul class="navbar-nav">
<?php if (!empty($this->menu_links)):
foreach ($this->menu_links as $menu_link):
if ($menu_link->location == 'top_menu'):
$item_link = generate_menu_item_url($menu_link);
if (!empty($menu_link->page_default_name)):
$item_link = generate_url($menu_link->page_default_name);
endif; ?>
<li class="nav-item"><a style="color: white;font-weight: 600;" href="<?= $item_link; ?>" class="nav-link"><?php echo html_escape($menu_link->title); ?></a></li>
<?php endif;
endforeach;
endif; ?>
</ul>
<?php endif; ?>
</div>
<div class="col-6 col-right">
<ul class="navbar-nav">
<?php if ($this->general_settings->location_search_header == 1 && item_count($this->countries) > 0): ?>
<li class="nav-item">
<a style="color: white;font-weight: 600;" href="javascript:void(0)" data-toggle="modal" data-target="#locationModal" class="nav-link btn-modal-location">
<svg style="color: white;font-weight: 600;" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 16 16" fill="#888888" class="mds-svg-icon">
<path d="M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10zm0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"/>
</svg>
<?= !empty($this->default_location_input) ? $this->default_location_input : trans("location"); ?>
</a>
</li>
<?php endif; ?>
<?php if ($this->payment_settings->currency_converter == 1 && !empty($this->currencies)): ?>
<li class="nav-item dropdown top-menu-dropdown" style="color: white;font-weight: 600;">
<a  href="javascript:void(0)" class="nav-link dropdown-toggle" data-toggle="dropdown">
<?= $this->selected_currency->code; ?>&nbsp;(<?= $this->selected_currency->symbol; ?>)&nbsp;<i class="icon-arrow-down"></i>
</a>
<?php echo form_open('set-selected-currency-post'); ?>
<ul class="dropdown-menu">
<?php foreach ($this->currencies as $currency):
if ($currency->status == 1):?>
<li>
<button type="submit" name="currency" value="<?= $currency->code; ?>"><?= $currency->code; ?>&nbsp;(<?= $currency->symbol; ?>)</button>
</li>
<?php endif;
endforeach; ?>
</ul>
<?php echo form_close(); ?>
</li>
<?php endif; ?>
<?php if ($this->general_settings->multilingual_system == 1 && count($this->languages) > 1): ?>
<li class="nav-item dropdown top-menu-dropdown">
<a href="javascript:void(0)" class="nav-link dropdown-toggle" data-toggle="dropdown">
<img src="<?php echo base_url($this->selected_lang->flag_path); ?>" class="flag"><?php echo html_escape($this->selected_lang->name); ?>&nbsp;<i class="icon-arrow-down"></i>
</a>
<?php echo form_open('set-selected-currency-post'); ?>
<ul class="dropdown-menu dropdown-menu-lang">
<?php foreach ($this->languages as $language): ?>
<li>
<a href="<?php echo convert_url_by_language($language); ?>" class="dropdown-item <?php echo ($language->id == $this->selected_lang->id) ? 'selected' : ''; ?>">
<img src="<?php echo base_url($language->flag_path); ?>" class="flag"><?php echo $language->name; ?>
</a>
</li>
<?php endforeach; ?>
</ul>
<?php echo form_close(); ?>
</li>
<?php endif; ?>
<?php if ($this->auth_check): ?>
<li class="nav-item dropdown profile-dropdown p-r-0">
<a class="nav-link dropdown-toggle a-profile" data-toggle="dropdown" href="javascript:void(0)" aria-expanded="false">
<img src="<?php echo get_user_avatar($this->auth_user); ?>" alt="<?php echo get_shop_name($this->auth_user); ?>">
<?php echo character_limiter(get_shop_name($this->auth_user), 15, '..'); ?>
<i class="icon-arrow-down"></i>
<?php if ($unread_message_count > 0): ?>
<span class="message-notification"><?= $unread_message_count; ?></span>
<?php endif; ?>
</a>
<ul class="dropdown-menu">
<?php if (has_permission('admin_panel')): ?>
<li>
<a href="<?php echo admin_url(); ?>">
<i class="icon-admin"></i>
<?php echo trans("admin_panel"); ?>
</a>
</li>
<?php endif; ?>
<?php if (is_vendor()): ?>
<li>
<a href="<?= dashboard_url(); ?>">
<i class="icon-dashboard"></i>
<?php echo trans("dashboard"); ?>
</a>
</li>
<?php endif; ?>
<li>
<a href="<?php echo generate_profile_url($this->auth_user->slug); ?>">
<i class="icon-user"></i>
<?php echo trans("profile"); ?>
</a>
</li>
<?php if ($this->is_sale_active): ?>
<li>
<a href="<?php echo generate_url("orders"); ?>">
<i class="icon-shopping-basket"></i>
<?php echo trans("orders"); ?>
</a>
</li>
<?php if (is_bidding_system_active()): ?>
<li>
<a href="<?php echo generate_url("quote_requests"); ?>">
<i class="icon-price-tag-o"></i>
<?php echo trans("quote_requests"); ?>
</a>
</li>
<?php endif; ?>
<?php if ($this->general_settings->digital_products_system == 1): ?>
<li>
<a href="<?php echo generate_url("downloads"); ?>">
<i class="icon-download"></i>
<?php echo trans("downloads"); ?>
</a>
</li>
<?php endif; ?>
<li>
<a href="<?php echo generate_url("refund_requests"); ?>">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 16 16" class="mds-svg-icon">
<path d="M0 3a2 2 0 0 1 2-2h13.5a.5.5 0 0 1 0 1H15v2a1 1 0 0 1 1 1v8.5a1.5 1.5 0 0 1-1.5 1.5h-12A2.5 2.5 0 0 1 0 12.5V3zm1 1.732V12.5A1.5 1.5 0 0 0 2.5 14h12a.5.5 0 0 0 .5-.5V5H2a1.99 1.99 0 0 1-1-.268zM1 3a1 1 0 0 0 1 1h12V2H2a1 1 0 0 0-1 1z"/>
</svg>
<?php echo trans("refund"); ?>
</a>
</li>
<?php endif; ?>
<li>
<a href="<?php echo generate_url("messages"); ?>">
<i class="icon-mail"></i>
<?php echo trans("messages"); ?>&nbsp;
<?php if ($unread_message_count > 0): ?>
<span class="span-message-count">(<?= $unread_message_count; ?>)</span>
<?php endif; ?>
</a>
</li>
<li>
<a href="<?php echo generate_url("settings", "update_profile"); ?>">
<i class="icon-settings"></i>
<?php echo trans("settings"); ?>
</a>
</li>
<li>
<a href="<?php echo base_url(); ?>logout" class="logout">
<i class="icon-logout"></i>
<?php echo trans("logout"); ?>
</a>
</li>
</ul>
</li>
<?php else: ?>
<li class="nav-item">
<a href="javascript:void(0)" data-toggle="modal" data-target="#loginModal" class="nav-link"><?php echo trans("login"); ?></a>
<span class="auth-sep">/</span>
<a href="<?php echo generate_url("register"); ?>" class="nav-link"><?php echo trans("register"); ?></a>
</li>
<?php endif; ?>
</ul>
</div>
</div>
</div>
</div>

Zerion Mini Shell 1.0