소스 검색

Merge branch 'develop'

master
Fab 4 년 전
부모
커밋
a58771d510
3개의 변경된 파일17개의 추가작업 그리고 0개의 파일을 삭제
  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 파일 보기

@@ -44,6 +44,7 @@ class CitiesController extends AbstractController

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

+ 1
- 0
ShopBundle/Resources/translations/lcshop.fr.yaml 파일 보기

@@ -474,6 +474,7 @@ action:
account: Mon compte
logout: Me déconnecter
address: Adresse utilisateur
switch: Prendre la main
order:
addOrderProduct: Ajouter un produit
addReductionCart: Ajouter une réduction

+ 15
- 0
ShopBundle/Resources/views/backend/user/block/user-switch.html.twig 파일 보기

@@ -0,0 +1,15 @@

{% 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…
취소
저장