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 / CX.php
blobd488a45df6a2851947b31a9c7ae1d6fb99c314cc
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' => '61',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[1458]\\d{5,9}$/',
15 'fixed' => '/^89164\\d{4}$/',
16 'mobile' => '/^4(?:[0-2]\\d|3[0-57-9]|4[47-9]|5[0-37-9]|6[6-9]|7[07-9]|8[7-9])\\d{6}$/',
17 'tollfree' => '/^1(?:80(?:0\\d{2})?|3(?:00\\d{2})?)\\d{4}$/',
18 'premium' => '/^190[0126]\\d{6}$/',
19 'personal' => '/^500\\d{6}$/',
20 'voip' => '/^550\\d{6}$/',
21 'emergency' => '/^000|112$/',
23 'possible' => array(
24 'general' => '/^\\d{6,10}$/',
25 'fixed' => '/^\\d{8,9}$/',
26 'mobile' => '/^\\d{9}$/',
27 'tollfree' => '/^\\d{6,10}$/',
28 'premium' => '/^\\d{10}$/',
29 'personal' => '/^\\d{9}$/',
30 'voip' => '/^\\d{9}$/',
31 'emergency' => '/^\\d{3}$/',