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 / DZ.php
blob3908120893a5dcf7ed1486561885978fb99eab66
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' => '213',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^(?:[1-4]|[5-9]\\d)\\d{7}$/',
15 'fixed' => '/^(?:1\\d|2[014-79]|3[0-8]|4[0135689])\\d{6}|9619\\d{5}$/',
16 'mobile' => '/^(?:5[56]|7[7-9])\\d{7}|6(?:[569]\\d|70)\\d{6}$/',
17 'tollfree' => '/^800\\d{6}$/',
18 'premium' => '/^80[3-689]1\\d{5}$/',
19 'shared' => '/^80[12]1\\d{5}$/',
20 'voip' => '/^98[23]\\d{6}$/',
21 'emergency' => '/^1[47]$/',
23 'possible' => array(
24 'general' => '/^\\d{8,9}$/',
25 'mobile' => '/^\\d{9}$/',
26 'tollfree' => '/^\\d{9}$/',
27 'premium' => '/^\\d{9}$/',
28 'shared' => '/^\\d{9}$/',
29 'voip' => '/^\\d{9}$/',
30 'emergency' => '/^\\d{2}$/',