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 / PK.php
blobcd3953bd55cfc1cf6e72a9d7727465f8e3d3bd3c
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' => '92',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^1\\d{8}|[2-8]\\d{5,11}|9(?:[013-9]\\d{4,9}|2\\d(?:111\\d{6}|\\d{3,7}))$/',
15 'fixed' => '/^(?:21|42)[2-9]\\d{7}|(?:2[25]|4[0146-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)[2-9]\\d{6}|(?:2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:1|2[2-8]|3[27-9]|4[2-6]|6[3569]|9[25-8]))[2-9]\\d{5,6}|58[126]\\d{7}$/',
16 'mobile' => '/^3(?:0\\d|1[1-5]|2[0-5]|3[1-6]|4[1-7]|55|64)\\d{7}$/',
17 'tollfree' => '/^800\\d{5}$/',
18 'premium' => '/^900\\d{5}$/',
19 'personal' => '/^122\\d{6}$/',
20 'uan' => '/^(?:2(?:[125]|3[2358]|4[2-4]|9[2-8])|4(?:[0-246-9]|5[3479])|5(?:[1-35-7]|4[2-467])|6(?:[1-8]|0[468])|7(?:[14]|2[236])|8(?:[16]|2[2-689]|3[23578]|4[3478]|5[2356])|9(?:1|22|3[27-9]|4[2-6]|6[3569]|9[2-7]))111\\d{6}$/',
21 'emergency' => '/^1(?:1(?:22?|5)|[56])$/',
23 'possible' => array(
24 'general' => '/^\\d{6,12}$/',
25 'fixed' => '/^\\d{6,10}$/',
26 'mobile' => '/^\\d{10}$/',
27 'tollfree' => '/^\\d{8}$/',
28 'premium' => '/^\\d{8}$/',
29 'personal' => '/^\\d{9}$/',
30 'uan' => '/^\\d{11,12}$/',
31 'emergency' => '/^\\d{2,4}$/',