templates/front/theme1/partials/header/elements/_telephones.html.twig line 1

Open in your IDE?
  1. {% if contacts and (tel1 or tel2) %}
  2.     {% if unserialize(contacts[0].tel) %}
  3.         {% set nbrTelContact1 = unserialize(contacts[0].tel)|length %}
  4.         {# Si le premier contact a 2 téléphone donc afficher ses 2 tels sinon afficher un tel pour le contact 1 et un tel pour contact 2#}
  5.         {% if nbrTelContact1 > 1 %}
  6.             {% set itemTel1Contact1 = unserialize(contacts[0].tel)[0] %}
  7.             {% set itemTel2Contact1 = unserialize(contacts[0].tel)[1] %}
  8.             {% if tel1 %}
  9.                 <div class="info-header info-tel1">
  10.                     <a href="tel:{{itemTel1Contact1|replace({' ': ''})}}"  class="tel tel-header-1" rel="nofollow" itemprop="telephone">
  11.                         <i class="fa fa-phone mr-2 {{class_icon}}"></i>
  12.                         {% if contacts[0].titreTel != "" and titreTel1 %}{{contacts[0].titreTel}}{% endif %}
  13.                         {{itemTel1Contact1}}
  14.                     </a>
  15.                 </div>
  16.             {% endif %}
  17.             {% if tel2 %}
  18.                 <div class="info-header info-tel2">
  19.                     <a href="tel:{{itemTel2Contact1|replace({' ': ''})}}"  class="tel tel-header-2" rel="nofollow" itemprop="telephone">
  20.                         {# {% if contacts[0].titreTel2 != "" and titreTel2 %}{{contacts[0].titreTel2}}{% endif %} #}
  21.                         <i class="fa fa-mobile mr-2 {{class_icon}}"></i>
  22.                         {{itemTel2Contact1}}
  23.                     </a>
  24.                 </div>
  25.             {% endif %}
  26.         {% else %}
  27.             {% set itemTel1Contact1 = unserialize(contacts[0].tel)[0] %}
  28.             {% if tel1 %}
  29.                 <div class="info-header info-tel1">
  30.                     <a href="tel:{{itemTel1Contact1|replace({' ': ''})}}"  class="tel tel-header-1" rel="nofollow" itemprop="telephone">
  31.                         <i class="fa fa-phone mr-2 {{class_icon}}"></i>
  32.                         {% if contacts[0].titreTel != "" and titreTel1 %}{{contacts[0].titreTel}}{% endif %}
  33.                         {{itemTel1Contact1}}
  34.                     </a>
  35.                 </div>
  36.             {% endif %}
  37.         {% endif %}
  38.         {% if tel2 and nbrTelContact1 <= 1 and contacts|length > 1 %}
  39.             {% if unserialize(contacts[1].tel) %}
  40.                 {% set itemTel1Contact2 = unserialize(contacts[1].tel)[0] %}
  41.                 <div class="info-header info-tel2">
  42.                     <a href="tel:{{itemTel1Contact2|replace({' ': ''})}}"  class="tel tel-header-2" rel="nofollow" itemprop="telephone">
  43.                         <i class="fa fa-phone mr-2 {{class_icon}}"></i>
  44.                         {# {% if contacts[0].titreTel2 != "" and titreTel2 %}{{contacts[0].titreTel2}}{% endif %} #}
  45.                         {{itemTel1Contact2}}
  46.                     </a>
  47.                 </div>
  48.             {% endif %}
  49.         {% endif %}
  50.     {% endif %}
  51. {% endif %}