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 / AZ.php
blobbe93b0f263c577829e72ab69c74329bbd7681655
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' => '994',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[1-9]\\d{8}$/',
15 'fixed' => '/^(?:1[28]\\d|2(?:02|1[24]|2[2-4]|33|[45]2|6[23])|365)\\d{6}$/',
16 'mobile' => '/^(?:4[04]|5[015]|60|7[07])\\d{7}$/',
17 'tollfree' => '/^88\\d{7}$/',
18 'premium' => '/^900200\\d{3}$/',
19 'emergency' => '/^1(?:0[123]|12)$/',
21 'possible' => array(
22 'general' => '/^\\d{7,9}$/',
23 'mobile' => '/^\\d{9}$/',
24 'tollfree' => '/^\\d{9}$/',
25 'premium' => '/^\\d{9}$/',
26 'emergency' => '/^\\d{3}$/',