templates/helper/intl.input.html.twig line 1

  1. <script type="text/javascript">
  2. //Begin -- Initialisation des selects téléphone dans tous le document
  3. function intlPhone(input){
  4.     return window.intlTelInput(input, {
  5.         // allowDropdown: false,
  6.         autoHideDialCode: true,
  7.         // autoPlaceholder: true,
  8.         // dropdownContainer: document.querySelector('input[name=phone]'),
  9.         // excludeCountries: ["us"],
  10.         // formatOnDisplay: true,
  11.         geoIpLookup: function(callback) {
  12.             $.get("http://ipinfo.io", function() {}, "jsonp").always(function(resp) {
  13.                 var countryCode = (resp && resp.country) ? resp.country : "";
  14.                 callback(countryCode);
  15.             });
  16.         },
  17.         hiddenInput: "full_number",
  18.         initialCountry: "bj",
  19.         // localizedCountries: { 'de': 'Deutschland' },
  20.         nationalMode: true,
  21.         // onlyCountries: ['us', 'gb', 'ch', 'ca', 'do'],
  22.         placeholderNumberType: "UNKNOWN",
  23.         preferredCountries: [
  24.             'bj', 'bf', 'ci', 'cm', 'cd', 'ga', 'gn', 'ml', 'ne', 'sn', 'tg', 'be', 'de', 'fr', 'ng', 'us'
  25.         ],
  26.         separateDialCode: true,
  27.         utilsScript: "{{asset('vitrine/librairies/intl/build/js/utils.js') }}",
  28.     });
  29. }
  30. var selectorsPhone = document.querySelectorAll('input.tel');
  31. if(typeof intl === 'undefined') var intl = [];
  32. selectorsPhone.forEach((selector, index) => {
  33.     let id = $(selector).attr("id");
  34.     if(id === undefined) id = index;
  35.     intl[id] = intlPhone(selector);
  36.     $(selector).parent('div.iti').addClass("w-100");
  37.     $(selector).css('padding-left', "100px");
  38. });
  39. //End -- Initialisation des selects téléphone dans tous le document
  40. function checkPhone(full_number) {
  41.     const full = full_number;
  42.     if(
  43.         (full.length == 12 && full.substr(0, 6) == "+22952")
  44.         || (full.length == 14 && full.substr(0, 4) == "+225")
  45.         || (full.length == 12 && full.substr(0, 6) == "+22953")
  46.         || (full.length == 12 && full.substr(0, 6) == "+22954")
  47.         || (full.length == 12 && full.substr(0, 6) == "+22955")
  48.         || (full.length == 12 && full.substr(0, 6) == "+22957")
  49.         || (full.length == 12 && full.substr(0, 6) == "+22956")
  50.         || (full.length == 12 && full.substr(0, 6) == "+22959")
  51.         || (full.length == 12 && full.substr(0, 6) == "+22950")
  52.     ){
  53.         return true;
  54.     }
  55.     return false;
  56. };
  57. </script>