Browse Source

Merge branch 'develop'

master
Fab 4 years ago
parent
commit
a58771d510
3 changed files with 17 additions and 0 deletions
  1. +1
    -0
      ShopBundle/Controller/CitiesController.php
  2. +1
    -0
      ShopBundle/Resources/translations/lcshop.fr.yaml
  3. +15
    -0
      ShopBundle/Resources/views/backend/user/block/user-switch.html.twig

+ 1
- 0
ShopBundle/Controller/CitiesController.php View File



$return[] = [ $return[] = [
'label' => '<span class="city">'.$city->nom.'</span> <span class="zip">'.$codesPostaux[0].'</span>', 'label' => '<span class="city">'.$city->nom.'</span> <span class="zip">'.$codesPostaux[0].'</span>',
'city' => $city->nom,
'value' => $city->code 'value' => $city->code
] ; ] ;
} }

+ 1
- 0
ShopBundle/Resources/translations/lcshop.fr.yaml View File

account: Mon compte account: Mon compte
logout: Me déconnecter logout: Me déconnecter
address: Adresse utilisateur address: Adresse utilisateur
switch: Prendre la main
order: order:
addOrderProduct: Ajouter un produit addOrderProduct: Ajouter un produit
addReductionCart: Ajouter une réduction addReductionCart: Ajouter une réduction

+ 15
- 0
ShopBundle/Resources/views/backend/user/block/user-switch.html.twig View File


{% if is_granted('ROLE_SUPER_ADMIN') %}
{% if is_dropdown %}
<a class="btn dropdown-item {{ action.css_class|default('btn-default') }}" href="{{ merchantUtils.merchantCurrent.getMerchantConfig('url') }}?_switch_user={{ item.username }}" target="_blank">
{%- if action.icon %}<i class="fa fa-fw fa-{{ action.icon }}"></i> {% endif -%}
{{ action.label|trans(arguments = trans_parameters|merge({ '%entity_id%': item_id }), domain = translation_domain) }}
</a>
{% else %}
<a class="btn {{ action.css_class|default('btn-default') }}" data-toggle="tooltip"
title="{{ action.label|trans(arguments = trans_parameters|merge({ '%entity_id%': item_id }), domain = translation_domain) }}"
href="{{ merchant.getMerchantConfig('url') }}?_switch_user={{ val }}" target="_blank">
{%- if action.icon %}<i class="fa fa-fw fa-{{ action.icon }}"></i> {% endif -%}
</a>
{% endif %}
{% endif %}

Loading…
Cancel
Save