Subversion Repositories Applications.papyrus

Rev

Rev 1463 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1463 alexandre_ 1
<?php
2
// +----------------------------------------------------------------------+
3
// | PEAR :: I18Nv2 :: DecoartedList :: AfricanCountries                  |
4
// +----------------------------------------------------------------------+
5
// | This source file is subject to version 3.0 of the PHP license,       |
6
// | that is available at http://www.php.net/license/3_0.txt              |
7
// | If you did not receive a copy of the PHP license and are unable      |
8
// | to obtain it through the world-wide-web, please send a note to       |
9
// | license@php.net so we can mail you a copy immediately.               |
10
// +----------------------------------------------------------------------+
11
// | Copyright (c) 2004 Michael Wallner <mike@iworks.at>                  |
12
// +----------------------------------------------------------------------+
13
//
14
// $Id: AfricanCountries.php,v 1.1 2007-06-25 09:55:28 alexandre_tb Exp $
15
 
16
/**
17
 * I18Nv2::DecoratedList::AfricanCountries
18
 *
19
 * @package     I18Nv2
20
 * @category    Internationalization
21
 */
22
 
23
require_once 'I18Nv2/DecoratedList/Filter.php';
24
 
25
/**
26
 * I18Nv2_DecoratedList_AfricanCountries
27
 *
28
 * Use only for decorating I18Nv2_Country.
29
 *
30
 * @author      Michael Wallner <mike@php.net>
31
 * @version     $Revision: 1.1 $
32
 * @package     I18Nv2
33
 * @access      public
34
 */
35
class I18Nv2_DecoratedList_AfricanCountries extends I18Nv2_DecoratedList_Filter
36
{
37
    /**
38
     * Keys for African countries
39
     *
40
     * @var array
41
     */
42
    var $elements = array(
43
        'DZ','AO','BJ','BW','BF','BI','CM','CV','CF','TD','KM','CG','CD','DJ',
44
        'EG','GQ','ER','ET','GA','GM','GH','GN','GW','CI','KE','LS','LR','LY',
45
        'MG','MW','ML','MR','MU','MA','MZ','NA','NE','NG','RW','ST','SN','SC',
46
        'SL','SO','ZA','SD','SZ','TZ','TG','TN','UG','ZM','ZW'
47
    );
48
}
49
?>