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 / BG.php
blob228737169b20accac4eec7b43048e87001580cac
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' => '359',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[23567]\\d{5,7}|[489]\\d{6,8}$/',
15 'fixed' => '/^2(?:[0-8]\\d{5,6}|9\\d{4,6})|(?:[36]\\d|5[1-9]|8[1-6]|9[1-7])\\d{5,6}|(?:4(?:[124-7]\\d|3[1-6])|7(?:0[1-9]|[1-9]\\d))\\d{4,5}$/',
16 'mobile' => '/^(?:8[7-9]|98)\\d{7}|4(?:3[0789]|8\\d)\\d{5}$/',
17 'tollfree' => '/^800\\d{5}$/',
18 'premium' => '/^90\\d{6}$/',
19 'personal' => '/^700\\d{5}$/',
20 'emergency' => '/^1(?:12|50|6[06])$/',
22 'possible' => array(
23 'general' => '/^\\d{5,9}$/',
24 'fixed' => '/^\\d{5,8}$/',
25 'mobile' => '/^\\d{8,9}$/',
26 'tollfree' => '/^\\d{8}$/',
27 'premium' => '/^\\d{8}$/',
28 'emergency' => '/^\\d{3}$/',