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 / SA.php
blob851fa279974d9e5965257348a6e02c47fa27aeb8
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' => '966',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^(?:[1-467]|92)\\d{7}|5\\d{8}|8\\d{9}$/',
15 'fixed' => '/^(?:[12][24-8]|3[35-8]|4[3-68]|6[2-5]|7[235-7])\\d{6}$/',
16 'mobile' => '/^(?:5[013-689]\\d|8111)\\d{6}$/',
17 'tollfree' => '/^800\\d{7}$/',
18 'uan' => '/^9200\\d{5}$/',
19 'shortcode' => '/^9(0[24-79]|33|40|66|8[59]|9[02-6])$/',
20 'emergency' => '/^99[7-9]$/',
22 'possible' => array(
23 'general' => '/^\\d{7,10}$/',
24 'fixed' => '/^\\d{7,8}$/',
25 'mobile' => '/^\\d{9,10}$/',
26 'tollfree' => '/^\\d{10}$/',
27 'uan' => '/^\\d{9}$/',
28 'shortcode' => '/^\\d{3}$/',
29 'emergency' => '/^\\d{3}$/',