fix calendar css, take 2. (#213)
[openemr.git] / interface / modules / zend_modules / library / Zend / I18n / Validator / PhoneNumber / BA.php
blobe7908dd3afd2231ed53b10e8eaca3c0d804f17ed
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-2015 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' => '387',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[3-9]\\d{7,8}$/',
15 'fixed' => '/^(?:[35]\\d|49)\\d{6}$/',
16 'mobile' => '/^6(?:03|44|71|[1-356])\\d{6}$/',
17 'tollfree' => '/^8[08]\\d{6}$/',
18 'premium' => '/^9[0246]\\d{6}$/',
19 'shared' => '/^8[12]\\d{6}$/',
20 'uan' => '/^70[23]\\d{5}$/',
21 'emergency' => '/^12[234]$/',
23 'possible' => array(
24 'general' => '/^\\d{6,9}$/',
25 'fixed' => '/^\\d{6,8}$/',
26 'mobile' => '/^\\d{8,9}$/',
27 'tollfree' => '/^\\d{8}$/',
28 'premium' => '/^\\d{8}$/',
29 'shared' => '/^\\d{8}$/',
30 'uan' => '/^\\d{8}$/',
31 'emergency' => '/^\\d{3}$/',