Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / interface / modules / zend_modules / library / Zend / I18n / Validator / PhoneNumber / FR.php
blob8e36855fd4531e7f6599e716fcf630b7a22330eb
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 return array(
11 'code' => '33',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[124-9]\\d{8}|3\\d{3}(?:\\d{5})?$/',
15 'fixed' => '/^[1-5]\\d{8}$/',
16 'mobile' => '/^6\\d{8}|7[5-9]\\d{7}$/',
17 'tollfree' => '/^80\\d{7}$/',
18 'premium' => '/^3\\d{3}|89[1-37-9]\\d{6}$/',
19 'shared' => '/^8(?:1[019]|2[0156]|84|90)\\d{6}$/',
20 'voip' => '/^9\\d{8}$/',
21 'emergency' => '/^1(?:[578]|12)$/',
23 'possible' => array(
24 'general' => '/^\\d{4}(?:\\d{5})?$/',
25 'fixed' => '/^\\d{9}$/',
26 'mobile' => '/^\\d{9}$/',
27 'tollfree' => '/^\\d{9}$/',
28 'premium' => '/^\\d{4}(?:\\d{5})?$/',
29 'shared' => '/^\\d{9}$/',
30 'voip' => '/^\\d{9}$/',
31 'emergency' => '/^\\d{2,3}$/',