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 / IL.php
blob760da9e8d0b54e4c727b9d0489349f848bd59f3b
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' => '972',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[17]\\d{6,9}|[2-589]\\d{3}(?:\\d{3,6})?|6\\d{3}$/',
15 'fixed' => '/^[2-489]\\d{7}$/',
16 'mobile' => '/^5(?:[02347-9]\\d{2}|5(?:2[23]|3[34]|4[45]|5[5689]|6[67]|7[78]|8[89])|6[2-9]\\d)\\d{5}$/',
17 'tollfree' => '/^1(?:80[019]\\d{3}|255)\\d{3}$/',
18 'premium' => '/^1(?:212|(?:9(?:0[01]|19)|200)\\d{2})\\d{4}$/',
19 'shared' => '/^1700\\d{6}$/',
20 'voip' => '/^7(?:2[23]\\d|3[237]\\d|47\\d|6(?:5\\d|8[08])|7\\d{2}|8(?:33|55|77|81))\\d{5}$/',
21 'uan' => '/^[2-689]\\d{3}$/',
22 'voicemail' => '/^1599\\d{6}$/',
23 'shortcode' => '/^1\\d{3}$/',
24 'emergency' => '/^1(?:0[012]|12)$/',
26 'possible' => array(
27 'general' => '/^\\d{4,10}$/',
28 'fixed' => '/^\\d{7,8}$/',
29 'mobile' => '/^\\d{9}$/',
30 'tollfree' => '/^\\d{7,10}$/',
31 'premium' => '/^\\d{8,10}$/',
32 'shared' => '/^\\d{10}$/',
33 'voip' => '/^\\d{9}$/',
34 'uan' => '/^\\d{4}$/',
35 'voicemail' => '/^\\d{10}$/',
36 'shortcode' => '/^\\d{4}$/',
37 'emergency' => '/^\\d{3}$/',