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 / QA.php
blob684c88efde75aa1d1d761b1110ec41ed6dc23436
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' => '974',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[2-8]\\d{6,7}$/',
15 'fixed' => '/^4[04]\\d{6}$/',
16 'mobile' => '/^[3567]\\d{7}$/',
17 'pager' => '/^2(?:[12]\\d|61)\\d{4}$/',
18 'tollfree' => '/^800\\d{4}$/',
19 'shortcode' => '/^(?:1|20|9[27]\\d)\\d{2}$/',
20 'emergency' => '/^999$/',
22 'possible' => array(
23 'general' => '/^\\d{7,8}$/',
24 'pager' => '/^\\d{7}$/',
25 'shortcode' => '/^\\d{3,4}$/',
26 'emergency' => '/^\\d{3}$/',