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 / CU.php
blobd2e915fec27739320dbda6837a797b7983b7dc8d
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' => '53',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[2-57]\\d{5,7}$/',
15 'fixed' => '/^2[1-4]\\d{5,6}|3(?:1\\d{6}|[23]\\d{4,6})|4(?:[125]\\d{5,6}|[36]\\d{6}|[78]\\d{4,6})|7\\d{6,7}$/',
16 'mobile' => '/^5\\d{7}$/',
17 'shortcode' => '/^1(?:1(?:6111|8)|40)$/',
18 'emergency' => '/^10[456]$/',
20 'possible' => array(
21 'general' => '/^\\d{4,8}$/',
22 'mobile' => '/^\\d{8}$/',
23 'shortcode' => '/^\\d{3,6}$/',
24 'emergency' => '/^\\d{3}$/',