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 / MZ.php
blob33ce8ff5eb8ac3110ec0c19421ae441935fa12de
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' => '258',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[28]\\d{7,8}$/',
15 'fixed' => '/^2(?:[1346]\\d|5[0-2]|[78][12]|93)\\d{5}$/',
16 'mobile' => '/^8[246]\\d{7}$/',
17 'tollfree' => '/^800\\d{6}$/',
18 'shortcode' => '/^1[0234]\\d$/',
19 'emergency' => '/^1(?:1[79]|9[78])$/',
21 'possible' => array(
22 'general' => '/^\\d{8,9}$/',
23 'fixed' => '/^\\d{8}$/',
24 'mobile' => '/^\\d{9}$/',
25 'tollfree' => '/^\\d{9}$/',
26 'shortcode' => '/^\\d{3}$/',
27 'emergency' => '/^\\d{3}$/',