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 / TT.php
blob748e0754b495998d6f94c459dab63ced77b127dc
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' => '1',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[589]\\d{9}$/',
15 'fixed' => '/^868(?:2(?:01|2[1-5])|6(?:07|1[4-6]|2[1-9]|[3-6]\\d|7[0-79]|9[0-8])|82[12])\\d{4}$/',
16 'mobile' => '/^868(?:29\\d|3(?:0[1-9]|1[02-9]|[2-9]\\d)|4(?:[679]\\d|8[0-4])|6(?:20|78|8\\d)|7(?:03|1[02-9]|[2-9]\\d))\\d{4}$/',
17 'tollfree' => '/^8(?:00|55|66|77|88)[2-9]\\d{6}$/',
18 'premium' => '/^900[2-9]\\d{6}$/',
19 'personal' => '/^5(?:00|33|44)[2-9]\\d{6}$/',
20 'emergency' => '/^99[09]$/',
22 'possible' => array(
23 'general' => '/^\\d{7}(?:\\d{3})?$/',
24 'mobile' => '/^\\d{10}$/',
25 'tollfree' => '/^\\d{10}$/',
26 'premium' => '/^\\d{10}$/',
27 'personal' => '/^\\d{10}$/',
28 'emergency' => '/^\\d{3}$/',