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 / PY.php
blob76887ff02ee5947f9f16c2cd922f9a79563c7442
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' => '595',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^5[0-5]\\d{4,7}|[2-46-9]\\d{5,8}$/',
15 'fixed' => '/^(?:[26]1|3[289]|4[124678]|7[123]|8[1236])\\d{5,7}|(?:2(?:2[4568]|7[15]|9[1-5])|3(?:18|3[167]|4[2357]|51)|4(?:18|2[45]|3[12]|5[13]|64|71|9[1-47])|5(?:[1-4]\\d|5[0234])|6(?:3[1-3]|44|7[1-4678])|7(?:17|4[0-4]|6[1-578]|75|8[0-8])|858)\\d{5,6}$/',
16 'mobile' => '/^9(?:61|[78][1-6]|9[1-5])\\d{6}$/',
17 'voip' => '/^8700[0-4]\\d{4}$/',
18 'uan' => '/^[2-9]0\\d{4,7}$/',
19 'shortcode' => '/^1[1-4]\\d$/',
20 'emergency' => '/^128|911$/',
22 'possible' => array(
23 'general' => '/^\\d{5,9}$/',
24 'mobile' => '/^\\d{9}$/',
25 'voip' => '/^\\d{9}$/',
26 'uan' => '/^\\d{6,9}$/',
27 'shortcode' => '/^\\d{3}$/',
28 'emergency' => '/^\\d{3}$/',