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 / PL.php
blobbfe378e5a07d4b718520d1924b99d3238601ab7d
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' => '48',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[1-58]\\d{6,8}|9\\d{8}|[67]\\d{5,8}$/',
15 'fixed' => '/^(?:1[2-8]|2[2-59]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-6]|8[1-7])\\d{5,7}|77\\d{4,7}|(?:89|9[145])\\d{7}$/',
16 'mobile' => '/^(?:5[013]|6[069]|7[2389]|88)\\d{7}$/',
17 'pager' => '/^642\\d{3,6}$/',
18 'tollfree' => '/^800\\d{6}$/',
19 'premium' => '/^70\\d{7}$/',
20 'shared' => '/^801\\d{6}$/',
21 'voip' => '/^39\\d{7}$/',
22 'emergency' => '/^112|99[789]$/',
24 'possible' => array(
25 'general' => '/^\\d{6,9}$/',
26 'mobile' => '/^\\d{9}$/',
27 'tollfree' => '/^\\d{9}$/',
28 'premium' => '/^\\d{9}$/',
29 'shared' => '/^\\d{9}$/',
30 'voip' => '/^\\d{9}$/',
31 'emergency' => '/^\\d{3}$/',