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 / AE.php
blobffaf012c55650e86f8a67bbd7f0a293bb4e65002
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' => '971',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[2-79]\d{7,8}|800\d{2,9}$/',
15 'fixed' => '/^[2-4679][2-8]\d{6}$/',
16 'mobile' => '/^5[0256]\d{7}$/',
17 'tollfree' => '/^400\d{6}|800\d{2,9}$/',
18 'premium' => '/^900[02]\d{5}$/',
19 'shared' => '/^700[05]\d{5}$/',
20 'uan' => '/^600[25]\d{5}$/',
21 'emergency' => '/^112|99[789]$/',
23 'possible' => array(
24 'general' => '/^\d{5,12}$/',
25 'fixed' => '/^\d{7,8}$/',
26 'mobile' => '/^\d{9}$/',
27 'tollfree' => '/^\d{5,12}$/',
28 'premium' => '/^\d{9}$/',
29 'shared' => '/^\d{9}$/',
30 'uan' => '/^\d{9}$/',
31 'emergency' => '/^\d{3}$/',