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 / SE.php
blobc38a5000256e486c28206eb7b390bff6173f3077
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' => '46',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[1-9]\\d{6,9}$/',
15 'fixed' => '/^1(?:0[1-8]\\d{6}|[136]\\d{5,7}|(?:2[0-35]|4[0-4]|5[0-25-9]|7[13-6]|[89]\\d)\\d{5,6})|2(?:[136]\\d{5,7}|(?:2[0-7]|4[0136-8]|5[0138]|7[018]|8[01]|9[0-57])\\d{5,6})|3(?:[356]\\d{5,7}|(?:0[0-4]|1\\d|2[0-25]|4[056]|7[0-2]|8[0-3]|9[023])\\d{5,6})|4(?:[0246]\\d{5,7}|(?:1[0-8]|3[0135]|5[14-79]|7[0-246-9]|8[0156]|9[0-689])\\d{5,6})|5(?:0[0-6]|[15][0-5]|2[0-68]|3[0-4]|4\\d|6[03-5]|7[013]|8[0-79]|9[01])\\d{5,6}|6(?:[03]\\d{5,7}|(?:1[1-3]|2[0-4]|4[02-57]|5[0-37]|6[0-3]|7[0-2]|8[0247]|9[0-356])\\d{5,6})|8\\d{6,8}|9(?:0\\d{5,7}|(?:1[0-68]|2\\d|3[02-59]|[45][0-4]|[68][01]|7[0135-8])\\d{5,6})$/',
16 'mobile' => '/^7[0236]\\d{7}$/',
17 'pager' => '/^74\\d{7}$/',
18 'tollfree' => '/^20\\d{4,7}$/',
19 'premium' => '/^9(?:00|39|44)\\d{7}$/',
20 'shared' => '/^77\\d{7}$/',
21 'personal' => '/^75\\d{7}$/',
22 'emergency' => '/^112|90000$/',
24 'possible' => array(
25 'general' => '/^\\d{5,10}$/',
26 'fixed' => '/^\\d{5,9}$/',
27 'mobile' => '/^\\d{9}$/',
28 'pager' => '/^\\d{9}$/',
29 'tollfree' => '/^\\d{6,9}$/',
30 'premium' => '/^\\d{10}$/',
31 'shared' => '/^\\d{9}$/',
32 'personal' => '/^\\d{9}$/',
33 'emergency' => '/^\\d{3,5}$/',