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 / PE.php
blob6baf211b27980fca63e5c75a6d657d55b6e67f94
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' => '51',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[14-9]\\d{7,8}$/',
15 'fixed' => '/^(?:1\\d|4[1-4]|5[1-46]|6[1-7]|7[2-46]|8[2-4])\\d{6}$/',
16 'mobile' => '/^9\\d{8}$/',
17 'tollfree' => '/^800\\d{5}$/',
18 'premium' => '/^805\\d{5}$/',
19 'shared' => '/^801\\d{5}$/',
20 'personal' => '/^80[24]\\d{5}$/',
21 'emergency' => '/^1(?:05|1[67])$/',
23 'possible' => array(
24 'general' => '/^\\d{6,9}$/',
25 'fixed' => '/^\\d{6,8}$/',
26 'mobile' => '/^\\d{9}$/',
27 'tollfree' => '/^\\d{8}$/',
28 'premium' => '/^\\d{8}$/',
29 'shared' => '/^\\d{8}$/',
30 'personal' => '/^\\d{8}$/',
31 'emergency' => '/^\\d{3}$/',