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 / MV.php
blob40e0a52ef299ac36d7a878af79462cd9a0ab0a76
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' => '960',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[3467]\\d{6}|9(?:00\\d{7}|\\d{6})$/',
15 'fixed' => '/^(?:3(?:0[01]|3[0-59])|6(?:[567][02468]|8[024689]|90))\\d{4}$/',
16 'mobile' => '/^(?:46[46]|7[3-9]\\d|9[6-9]\\d)\\d{4}$/',
17 'pager' => '/^781\\d{4}$/',
18 'premium' => '/^900\\d{7}$/',
19 'shortcode' => '/^1(?:[19]0|23)$/',
20 'emergency' => '/^1(?:02|19)$/',
22 'possible' => array(
23 'general' => '/^\\d{7,10}$/',
24 'fixed' => '/^\\d{7}$/',
25 'mobile' => '/^\\d{7}$/',
26 'pager' => '/^\\d{7}$/',
27 'premium' => '/^\\d{10}$/',
28 'shortcode' => '/^\\d{3}$/',
29 'emergency' => '/^\\d{3}$/',