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 / TZ.php
blobc86ebe6320382941c0f2b4695a7700bc94b4f9e8
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' => '255',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^\\d{9}$/',
15 'fixed' => '/^2[2-8]\\d{7}$/',
16 'mobile' => '/^(?:6[158]|7[1-9])\\d{7}$/',
17 'tollfree' => '/^80[08]\\d{6}$/',
18 'premium' => '/^90\\d{7}$/',
19 'shared' => '/^8(?:40|6[01])\\d{6}$/',
20 'voip' => '/^41\\d{7}$/',
21 'emergency' => '/^11[12]|999$/',
23 'possible' => array(
24 'general' => '/^\\d{7,9}$/',
25 'fixed' => '/^\\d{7,9}$/',
26 'mobile' => '/^\\d{9}$/',
27 'tollfree' => '/^\\d{9}$/',
28 'premium' => '/^\\d{9}$/',
29 'shared' => '/^\\d{9}$/',
30 'voip' => '/^\\d{9}$/',
31 'emergency' => '/^\\d{3}$/',