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 / FJ.php
blob218d34f41835e4227b57e03e17c28ce9bfaa1533
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' => '679',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[36-9]\\d{6}|0\\d{10}$/',
15 'fixed' => '/^(?:3[0-5]|6[25-7]|8[58])\\d{5}$/',
16 'mobile' => '/^(?:7[0-467]|8[367]|9[02346-9])\\d{5}$/',
17 'tollfree' => '/^0800\\d{7}$/',
18 'shortcode' => '/^0(?:04|1[34]|8[1-4])|1(?:0[1-3]|[25]9)|2[289]|30|[45]4|75|913$/',
19 'emergency' => '/^91[17]$/',
21 'possible' => array(
22 'general' => '/^\\d{7}(?:\\d{4})?$/',
23 'fixed' => '/^\\d{7}$/',
24 'mobile' => '/^\\d{7}$/',
25 'tollfree' => '/^\\d{11}$/',
26 'shortcode' => '/^\\d{2,3}$/',
27 'emergency' => '/^\\d{3}$/',