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 / NZ.php
blob3631a0fcd82977b86b9f162dfd4d31da66a90bef
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' => '64',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^6[235-9]\\d{6}|[2-57-9]\\d{7,10}$/',
15 'fixed' => '/^(?:3[2-79]|[49][2-689]|6[235-9]|7[2-589])\\d{6}|24099\\d{3}$/',
16 'mobile' => '/^2(?:[028]\\d{7,8}|1(?:0\\d{5,7}|[12]\\d{5,6}|[3-9]\\d{5})|[79]\\d{7})$/',
17 'pager' => '/^[28]6\\d{6,7}$/',
18 'tollfree' => '/^508\\d{6,7}|80\\d{6,8}$/',
19 'premium' => '/^90\\d{7,9}$/',
20 'emergency' => '/^111$/',
22 'possible' => array(
23 'general' => '/^\\d{7,11}$/',
24 'fixed' => '/^\\d{7,8}$/',
25 'mobile' => '/^\\d{8,10}$/',
26 'pager' => '/^\\d{8,9}$/',
27 'tollfree' => '/^\\d{8,10}$/',
28 'premium' => '/^\\d{9,11}$/',
29 'emergency' => '/^\\d{3}$/',