src/Resources/views/Frontend/pro/_tel_contact.html.twig line 1

Open in your IDE?
  1. {# locale based : editorial content #}
  2. {% if is_current_country(constant('App\\Twig\\Extension\\CountryExtension::COUNTRY_BELGIUM')) and getParameter('vpautopro.contact.phone_belgique') is not null %}
  3.     {{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_belgique')|replace({' ':''}) : getParameter('vpautopro.contact.phone_belgique') }}
  4. {% elseif is_current_country(constant('App\\Twig\\Extension\\CountryExtension::COUNTRY_PORTUGAL')) and getParameter('vpautopro.contact.phone_portugal') is not null %}
  5.     {{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_portugal')|replace({' ':''}) : getParameter('vpautopro.contact.phone_portugal') }}
  6. {% elseif app.request.locale == 'de' and getParameter('vpautopro.contact.phone_allemagne') is not null %}
  7.     {{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_allemagne')|replace({' ':''}) : getParameter('vpautopro.contact.phone_allemagne') }}
  8. {% elseif app.request.locale == 'en' and getParameter('vpautopro.contact.phone_angleterre') is not null %}
  9.     {{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_angleterre')|replace({' ':''}) : getParameter('vpautopro.contact.phone_angleterre') }}
  10. {% elseif app.request.locale == 'es' and getParameter('vpautopro.contact.phone_espagne') is not null %}
  11.     {{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_espagne')|replace({' ':''}) : getParameter('vpautopro.contact.phone_espagne') }}
  12. {% elseif app.request.locale == 'it' and getParameter('vpautopro.contact.phone_italie') is not null %}
  13.     {{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_italie')|replace({' ':''}) : getParameter('vpautopro.contact.phone_italie') }}
  14. {% elseif app.request.locale == 'nl' and getParameter('vpautopro.contact.phone_pays_bas') is not null %}
  15.     {{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_pays_bas')|replace({' ':''}) : getParameter('vpautopro.contact.phone_pays_bas') }}
  16. {% elseif app.request.locale == 'hu' and getParameter('vpautopro.contact.phone_hongrie') is not null %}
  17.     {{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_hongrie')|replace({' ':''}) : getParameter('vpautopro.contact.phone_hongrie') }}
  18. {% elseif app.request.locale == 'pl' and getParameter('vpautopro.contact.phone_pologne') is not null %}
  19.     {{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_pologne')|replace({' ':''}) : getParameter('vpautopro.contact.phone_pologne') }}
  20. {% elseif app.request.locale == 'ro' and getParameter('vpautopro.contact.phone_roumanie') is not null %}
  21.     {{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_roumanie')|replace({' ':''}) : getParameter('vpautopro.contact.phone_roumanie') }}
  22. {% else %}
  23.     {{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone')|trim|replace({' ':''}) : getParameter('vpautopro.contact.phone') }}
  24. {% endif %}