src/NCBS/WebsiteBundle/Resources/views/Exposition/sidrbuttonw.html.twig line 1

Open in your IDE?
  1. {% if has_slider_item_for_work is defined and has_slider_item_for_work %}
  2.     {% set bOnMobile = app.session.get('is_on_mobile') %}
  3.     {% set nCol = '0' %}
  4.     {% if column_num is defined %}
  5.         {% set nCol = column_num %}
  6.     {% endif %}
  7.     
  8.     {% set class_name = "sidrbutton" %}
  9.     {% if multicolumn is defined %}
  10.       {% set class_name = "sidrbutton" %}
  11.     {% endif %}
  12.     {% set sUrlEnd = "?col="~nCol %}
  13.     {% if bInFrame %}
  14.         {% set sUrlEnd = sUrlEnd~"&frame=1" %}    
  15.     {% endif %}
  16.     {% if multicolumn_route_params is defined and multicolumn_route_params is not empty %}    
  17.         {% set sUrlEnd = sUrlEnd~"&m1="~multicolumn_route_params.column1Details~"&m2="~multicolumn_route_params.column2Details %}    
  18.         {% if columns is defined and columns|length == 3 %}
  19.             {% set sUrlEnd = sUrlEnd~"&m3="~multicolumn_route_params.column3Details %}    
  20.         {% endif %}        
  21.     {% endif %}
  22.     {% if plan_step is defined %}
  23.         {% set sUrlEnd = sUrlEnd~"&rp=1" %}    
  24.     {% endif %}
  25.     {% set sSliderUrl = slider_url~sUrlEnd %}    
  26.     <p class="{{ class_name }}"><a class="btn btn-slider btn-sm" id="simple-menuw2{{ nCol }}" href='javascript:onOpenWorkSlider("simple-menuw{{ nCol }}","{{ sSliderUrl }}",{{ nCol }});' ><i class="fas fa-arrow-left"></i> {{ app.session.get('ui_str')["exposition.slider.button"] }}</a></p><a id="simple-menuw{{ nCol }}" href="#sidrw{{ nCol }}" style="display:none" ></a>
  27.     <script>    
  28.         aSliderUrl[{{ nCol }}] = "{{ sSliderUrl }}";        
  29.     </script>
  30. {% endif %}