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 / ME.php
blob1b2a2610b30aded68ea3abbb7bc2b1a04b9961d0
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' => '382',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[2-9]\\d{7,8}$/',
15 'fixed' => '/^(?:20[2-8]|3(?:0[2-7]|1[35-7]|2[3567]|3[4-7])|4(?:0[237]|1[27])|5(?:0[47]|1[27]|2[378]))\\d{5}$/',
16 'mobile' => '/^6(?:32\\d|[89]\\d{2}|7(?:[0-8]\\d|9(?:[3-9]|[0-2]\\d)))\\d{4}$/',
17 'tollfree' => '/^800[28]\\d{4}$/',
18 'premium' => '/^(?:88\\d|9(?:4[13-8]|5[16-8]))\\d{5}$/',
19 'voip' => '/^78[1-9]\\d{5}$/',
20 'uan' => '/^77\\d{6}$/',
21 'shortcode' => '/^1(?:16\\d{3}|2(?:[015-9]|\\d{2})|[0135]\\d{2}|4\\d{2,3}|9\\d{3})$/',
22 'emergency' => '/^1(?:12|2[234])$/',
24 'possible' => array(
25 'general' => '/^\\d{6,9}$/',
26 'fixed' => '/^\\d{6,8}$/',
27 'mobile' => '/^\\d{8,9}$/',
28 'tollfree' => '/^\\d{8}$/',
29 'premium' => '/^\\d{8}$/',
30 'voip' => '/^\\d{8}$/',
31 'uan' => '/^\\d{8}$/',
32 'shortcode' => '/^\\d{3,6}$/',
33 'emergency' => '/^\\d{3}$/',