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 / UG.php
blob985f114e06f67006c8ddf4c7acc1652632306517
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' => '256',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^\\d{9}$/',
15 'fixed' => '/^20(?:[014]\\d{2}|2(?:40|[5-9]\\d)|3[23]\\d|5[0-4]\\d)\\d{4}|[34]\\d{8}$/',
16 'mobile' => '/^7(?:0[0-7]|[15789]\\d|20|[46][0-4])\\d{6}$/',
17 'tollfree' => '/^800[123]\\d{5}$/',
18 'premium' => '/^90[123]\\d{6}$/',
19 'emergency' => '/^999$/',
21 'possible' => array(
22 'general' => '/^\\d{5,9}$/',
23 'fixed' => '/^\\d{5,9}$/',
24 'mobile' => '/^\\d{9}$/',
25 'tollfree' => '/^\\d{9}$/',
26 'premium' => '/^\\d{9}$/',
27 'emergency' => '/^\\d{3}$/',