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 / BE.php
blob6165ca101dd9acd0c286743c4644503fb31b3ddb
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' => '32',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[1-9]\\d{7,8}$/',
15 'fixed' => '/^(?:1[0-69]|[23][2-8]|[49][23]|5\\d|6[013-57-9]|71)\\d{6}|8(?:0[1-9]|[1-79]\\d)\\d{5}$/',
16 'mobile' => '/^4(?:[679]\\d|8[03-9])\\d{6}$/',
17 'tollfree' => '/^800\\d{5}$/',
18 'premium' => '/^(?:90|7[07])\\d{6}$/',
19 'uan' => '/^78\\d{6}$/',
20 'emergency' => '/^1(?:0[01]|12)$/',
22 'possible' => array(
23 'general' => '/^\\d{8,9}$/',
24 'fixed' => '/^\\d{8}$/',
25 'mobile' => '/^\\d{9}$/',
26 'tollfree' => '/^\\d{8}$/',
27 'premium' => '/^\\d{8}$/',
28 'uan' => '/^\\d{8}$/',
29 'emergency' => '/^\\d{3}$/',