fix calendar css, take 2. (#213)
[openemr.git] / interface / modules / zend_modules / library / Zend / I18n / Validator / PhoneNumber / LR.php
blob16bc19e3cf1bab5c11c057192512539728d329c1
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' => '231',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^(?:[29]\\d|[4-6]|7\\d{1,2}|[38]\\d{2})\\d{6}$/',
15 'fixed' => '/^2\\d{7}$/',
16 'mobile' => '/^(?:4[67]|5\\d|6[4-8]|7(?:7[67]\\d|\\d{2})|88\\d{2})\\d{5}$/',
17 'premium' => '/^90\\d{6}$/',
18 'voip' => '/^33200\\d{4}$/',
19 'emergency' => '/^355|911$/',
21 'possible' => array(
22 'general' => '/^\\d{7,9}$/',
23 'fixed' => '/^\\d{8}$/',
24 'premium' => '/^\\d{8}$/',
25 'voip' => '/^\\d{9}$/',
26 'emergency' => '/^\\d{3}$/',