src/PaaBundle/Resources/views/Default/pre_imports.html.twig line 1

Open in your IDE?
  1. {# pre_imports.html.twig #}
  2.     <meta charset="utf-8">
  3.     <meta name="viewport" content="width=device-width, initial-scale=1">
  4.     <meta name="author" content="Limoog">
  5.     {% if not estDemo() %}
  6.         <meta name="robots" content="noindex"/>
  7.         <title>PAA</title>
  8.     {% else %}
  9.         <title>Logiciel planning médico-social et Alternance gratuit - PAA</title>
  10.     {% endif %}
  11.     <link rel="icon" type="image/x-icon" href="{{ asset_version('Images/PAA.ICO') }}" />
  12.     {% if poController is defined %}
  13.     <script>
  14.         window.estDevMode = "{{ poController.estDevMode() }}" ;
  15.         window.estPucette = "{{ poController.estPucette() }}" ;
  16.         window.appVersion = "{{ poController.getVersion() }}" ;
  17.         window.bAutoriseSemaineRecurrente = "{{poController.getParamètre('gbAutoriseSemaineRécurrente', 'false', 'L') }}" ;
  18.         window.iNbPlansTypes = "{{poController.getParamètre('giNbPlansTypes', '3', 'N') }}" ;
  19.     {% if poController.getDBName() is not same as("default") %}
  20.         window.baseURL = "/DB/{{ poController.getDBName() }}/" ;
  21.     {% else %}
  22.         window.baseURL = "{{ baseURL }}" ;
  23.     {% endif %}
  24.         window.baseURLJS = "{{ baseURLJS }}" ;
  25.         window.currentUser = "{{ app.user ? app.user : "" }}" ;
  26.         window.currentUser_Type = "{{ app.user ? app.user.ctype_res : "" }}" ;
  27.         window.currentUser_Id = "{{ app.user ? app.user.iid_res : "" }}" ;
  28.     {% if piSessionTimeout is defined %}
  29.         window.loginTimeout = "{{ piSessionTimeout }}" ;
  30.     {% else %}
  31.         window.loginTimeout = "{{ session_max_idle_time }}" ;
  32.     {% endif %}
  33.     window.bEstPucette = "{{ poController.estPucette() }}" ;
  34.     </script>
  35.     {% endif %}