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 / PS.php
blobbba95830c3e01f632b75a1a326de1b544a570258
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' => '970',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[24589]\\d{7,8}|1(?:[78]\\d{8}|[49]\\d{2,3})$/',
15 'fixed' => '/^(?:22[234789]|42[45]|82[01458]|92[369])\\d{5}$/',
16 'mobile' => '/^5[69]\\d{7}$/',
17 'tollfree' => '/^1800\\d{6}$/',
18 'premium' => '/^1(?:4|9\\d)\\d{2}$/',
19 'shared' => '/^1700\\d{6}$/',
21 'possible' => array(
22 'general' => '/^\\d{4,10}$/',
23 'fixed' => '/^\\d{7,8}$/',
24 'mobile' => '/^\\d{9}$/',
25 'tollfree' => '/^\\d{10}$/',
26 'premium' => '/^\\d{4,5}$/',
27 'shared' => '/^\\d{10}$/',