templates/helper/intl.input.html.twig line 1
<script type="text/javascript">
//Begin -- Initialisation des selects téléphone dans tous le document
function intlPhone(input){
return window.intlTelInput(input, {
// allowDropdown: false,
autoHideDialCode: true,
// autoPlaceholder: true,
// dropdownContainer: document.querySelector('input[name=phone]'),
// excludeCountries: ["us"],
// formatOnDisplay: true,
geoIpLookup: function(callback) {
$.get("http://ipinfo.io", function() {}, "jsonp").always(function(resp) {
var countryCode = (resp && resp.country) ? resp.country : "";
callback(countryCode);
});
},
hiddenInput: "full_number",
initialCountry: "bj",
// localizedCountries: { 'de': 'Deutschland' },
nationalMode: true,
// onlyCountries: ['us', 'gb', 'ch', 'ca', 'do'],
placeholderNumberType: "UNKNOWN",
preferredCountries: [
'bj', 'bf', 'ci', 'cm', 'cd', 'ga', 'gn', 'ml', 'ne', 'sn', 'tg', 'be', 'de', 'fr', 'ng', 'us'
],
separateDialCode: true,
utilsScript: "{{asset('vitrine/librairies/intl/build/js/utils.js') }}",
});
}
var selectorsPhone = document.querySelectorAll('input.tel');
if(typeof intl === 'undefined') var intl = [];
selectorsPhone.forEach((selector, index) => {
let id = $(selector).attr("id");
if(id === undefined) id = index;
intl[id] = intlPhone(selector);
$(selector).parent('div.iti').addClass("w-100");
$(selector).css('padding-left', "100px");
});
//End -- Initialisation des selects téléphone dans tous le document
function checkPhone(full_number) {
const full = full_number;
if(
(full.length == 12 && full.substr(0, 6) == "+22952")
|| (full.length == 14 && full.substr(0, 4) == "+225")
|| (full.length == 12 && full.substr(0, 6) == "+22953")
|| (full.length == 12 && full.substr(0, 6) == "+22954")
|| (full.length == 12 && full.substr(0, 6) == "+22955")
|| (full.length == 12 && full.substr(0, 6) == "+22957")
|| (full.length == 12 && full.substr(0, 6) == "+22956")
|| (full.length == 12 && full.substr(0, 6) == "+22959")
|| (full.length == 12 && full.substr(0, 6) == "+22950")
){
return true;
}
return false;
};
</script>