fix calendar css, take 2. (#213)
[openemr.git] / interface / modules / zend_modules / library / Zend / I18n / Validator / PhoneNumber / AW.php
blobf1b927fc8b2a6366de88db81ab7b04549a6c9043
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' => '297',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[25-9]\\d{6}$/',
15 'fixed' => '/^5(?:2\\d|8[1-9])\\d{4}$/',
16 'mobile' => '/^(?:5(?:6\\d|9[2-478])|6(?:[039]0|22|4[01]|6[0-2])|7[34]\\d|9(?:6[45]|9[4-8]))\\d{4}$/',
17 'tollfree' => '/^800\\d{4}$/',
18 'premium' => '/^900\\d{4}$/',
19 'voip' => '/^28\\d{5}|501\\d{4}$/',
20 'emergency' => '/^100|911$/',
22 'possible' => array(
23 'general' => '/^\\d{7}$/',
24 'emergency' => '/^\\d{3}$/',