Last change
on this file since 118089 was
118089,
checked in by toutati@…, 16 months ago
|
premier depot du plugin libphonenumber_demo
|
File size:
613 bytes
|
Line | |
---|
1 | <?php |
---|
2 | /** |
---|
3 | * vérification des numéros internationaux |
---|
4 | * |
---|
5 | * @plugin libphonenumber for SPIP |
---|
6 | * @copyright 2019 |
---|
7 | * @author Anne-lise Martenot |
---|
8 | * @licence GNU/GPL |
---|
9 | * (c) 2019 - Distribue sous licence GNU/GPL |
---|
10 | * |
---|
11 | **/ |
---|
12 | |
---|
13 | if (!defined('_ECRIRE_INC_VERSION')) { |
---|
14 | return; |
---|
15 | } |
---|
16 | |
---|
17 | function is_phone_ok($telephone,$pays){ |
---|
18 | $newtelephone = ''; |
---|
19 | $verifier = charger_fonction('verifier', 'inc'); |
---|
20 | $erreur_telephone = $verifier($telephone, 'phone', array('prefixes_pays' => $pays)); |
---|
21 | if ($erreur_telephone) { |
---|
22 | $newtelephone = $verifier($telephone, 'phone', array('prefixes_pays' => $pays)); |
---|
23 | } |
---|
24 | return $newtelephone; |
---|
25 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.