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 / VU.php
blob0970f51c1ad5e723c8bf96680621ae05edd27dd5
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' => '678',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[2-57-9]\\d{4,6}$/',
15 'fixed' => '/^(?:2[2-9]\\d|3(?:[5-7]\\d|8[0-8])|48[4-9]|88\\d)\\d{2}$/',
16 'mobile' => '/^(?:5(?:7[2-5]|[3-69]\\d)|7[013-7]\\d)\\d{4}$/',
17 'uan' => '/^3[03]\\d{3}|900\\d{4}$/',
18 'emergency' => '/^112$/',
20 'possible' => array(
21 'general' => '/^\\d{5,7}$/',
22 'fixed' => '/^\\d{5}$/',
23 'mobile' => '/^\\d{7}$/',
24 'uan' => '/^\\d{5,7}$/',
25 'emergency' => '/^\\d{3}$/',