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 / VN.php
blob0b3ae7fa5baf50751792304c369fbda28d896977
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' => '84',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[17]\\d{6,9}|[2-69]\\d{7,9}|8\\d{6,8}$/',
15 'fixed' => '/^(?:2(?:[025-79]|1[0189]|[348][01])|3(?:[0136-9]|[25][01])|4\\d|5(?:[01][01]|[2-9])|6(?:[0-46-8]|5[01])|7(?:[02-79]|[18][01])|8[1-9])\\d{7}$/',
16 'mobile' => '/^(?:9\\d|1(?:2\\d|6[2-9]|8[68]|99))\\d{7}$/',
17 'tollfree' => '/^1800\\d{4,6}$/',
18 'premium' => '/^1900\\d{4,6}$/',
19 'uan' => '/^[17]99\\d{4}|69\\d{5,6}|80\\d{5}$/',
20 'emergency' => '/^11[345]$/',
22 'possible' => array(
23 'general' => '/^\\d{7,10}$/',
24 'fixed' => '/^\\d{9,10}$/',
25 'mobile' => '/^\\d{9,10}$/',
26 'tollfree' => '/^\\d{8,10}$/',
27 'premium' => '/^\\d{8,10}$/',
28 'uan' => '/^\\d{7,8}$/',
29 'emergency' => '/^\\d{3}$/',