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 / UA.php
bloba9ed3c7f2eaf5957dc7036e8bd430904d32de4fd
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' => '380',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[3-689]\\d{8}$/',
15 'fixed' => '/^(?:3[1-8]|4[13-8]|5[1-7]|6[12459])\\d{7}$/',
16 'mobile' => '/^(?:39|50|6[36-8]|9[1-9])\\d{7}$/',
17 'tollfree' => '/^800\\d{6}$/',
18 'premium' => '/^900\\d{6}$/',
19 'emergency' => '/^1(?:0[123]|12)$/',
21 'possible' => array(
22 'general' => '/^\\d{5,9}$/',
23 'mobile' => '/^\\d{9}$/',
24 'tollfree' => '/^\\d{9}$/',
25 'premium' => '/^\\d{9}$/',
26 'emergency' => '/^\\d{3}$/',