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 / MU.php
blob7be716a9bfe9456eaa6e473440527fb6a34e6343
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' => '230',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[2-9]\\d{6}$/',
15 'fixed' => '/^(?:2(?:[034789]\\d|1[0-7]|6[1-69])|4(?:[013-8]\\d|2[4-7])|[56]\\d{2}|8(?:14|3[129]))\\d{4}$/',
16 'mobile' => '/^(?:25\\d|4(?:2[12389]|9\\d)|7\\d{2}|8(?:20|7[15-8])|9[1-8]\\d)\\d{4}$/',
17 'pager' => '/^2(?:1[89]|2\\d)\\d{4}$/',
18 'tollfree' => '/^80[012]\\d{4}$/',
19 'premium' => '/^30\\d{5}$/',
20 'voip' => '/^3(?:20|9\\d)\\d{4}$/',
21 'shortcode' => '/^1(?:1[0-36-9]|[02-9]\\d|\\d{3,4})|8\\d{3}$/',
22 'emergency' => '/^11[45]|99\\d$/',
24 'possible' => array(
25 'general' => '/^\\d{7}$/',
26 'shortcode' => '/^\\d{3,5}$/',
27 'emergency' => '/^\\d{3}$/',