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 / CZ.php
blob9a091f3699e1990e0252163ee11e51fb925475b1
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' => '420',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[2-8]\\d{8}|9\\d{8,11}$/',
15 'fixed' => '/^2\\d{8}|(?:3[1257-9]|4[16-9]|5[13-9])\\d{7}$/',
16 'mobile' => '/^(?:60[1-8]|7(?:0[2-5]|[2379]\\d))\\d{6}$/',
17 'tollfree' => '/^800\\d{6}$/',
18 'premium' => '/^9(?:0[05689]|76)\\d{6}$/',
19 'shared' => '/^8[134]\\d{7}$/',
20 'personal' => '/^70[01]\\d{6}$/',
21 'voip' => '/^9[17]0\\d{6}$/',
22 'uan' => '/^9(?:5[056]|7[234])\\d{6}$/',
23 'voicemail' => '/^9(?:3\\d{9}|6\\d{7,10})$/',
24 'shortcode' => '/^1(?:1(?:6\\d{3}|8\\d)|2\\d{2,3}|3\\d{3,4}|4\\d{3}|99)$/',
25 'emergency' => '/^1(?:12|5[058])$/',
27 'possible' => array(
28 'general' => '/^\\d{9,12}$/',
29 'voicemail' => '/^\\d{9,12}$/',
30 'shortcode' => '/^\\d{4,6}$/',
31 'emergency' => '/^\\d{3}$/',