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 / DE.php
blob7437c35adf9e7932437f658d0af33416ad46f262
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' => '49',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[1-35-9]\\d{3,14}|4(?:[0-8]\\d{4,12}|9(?:[0-37]\\d|4(?:[1-35-8]|4\\d?)|5\\d{1,2}|6[1-8]\\d?)\\d{2,7})$/',
15 'fixed' => '/^[246]\\d{5,13}|3(?:[03-9]\\d{4,13}|2\\d{9})|5(?:0[2-8]|[1256]\\d|[38][0-8]|4\\d{0,2}|[79][0-7])\\d{3,11}|7(?:0[2-8]|[1-9]\\d)\\d{3,10}|8(?:0[2-9]|[1-9]\\d)\\d{3,10}|9(?:0[6-9]|[1-9]\\d)\\d{3,10}$/',
16 'mobile' => '/^1(?:5[0-2579]\\d{8}|6[023]\\d{7,8}|7(?:[0-57-9]\\d?|6\\d)\\d{7})$/',
17 'pager' => '/^16(?:4\\d{1,10}|[89]\\d{1,11})$/',
18 'tollfree' => '/^800\\d{7,10}$/',
19 'premium' => '/^900(?:[135]\\d{6}|9\\d{7})$/',
20 'shared' => '/^180\\d{5,11}$/',
21 'personal' => '/^700\\d{8}$/',
22 'uan' => '/^18(?:1\\d{5,11}|[2-9]\\d{8})$/',
23 'voicemail' => '/^17799\\d{7,8}$/',
24 'shortcode' => '/^115$/',
25 'emergency' => '/^11[02]$/',
27 'possible' => array(
28 'general' => '/^\\d{2,15}$/',
29 'mobile' => '/^\\d{10,11}$/',
30 'pager' => '/^\\d{4,14}$/',
31 'tollfree' => '/^\\d{10,13}$/',
32 'premium' => '/^\\d{10,11}$/',
33 'shared' => '/^\\d{8,14}$/',
34 'personal' => '/^\\d{11}$/',
35 'uan' => '/^\\d{8,14}$/',
36 'voicemail' => '/^\\d{12,13}$/',
37 'shortcode' => '/^\\d{3}$/',
38 'emergency' => '/^\\d{3}$/',