Remove require_once for language classes
[lhc/web/wiklou.git] / languages / classes / LanguageGan.php
1 <?php
2 /**
3 * Gan Chinese specific code.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Language
22 */
23
24 /**
25 * @ingroup Language
26 */
27 class GanConverter extends LanguageConverter {
28 /**
29 * @param Language $langobj
30 * @param string $maincode
31 * @param array $variants
32 * @param array $variantfallbacks
33 * @param array $flags
34 * @param array $manualLevel
35 */
36 function __construct( $langobj, $maincode,
37 $variants = array(),
38 $variantfallbacks = array(),
39 $flags = array(),
40 $manualLevel = array() ) {
41 $this->mDescCodeSep = ':';
42 $this->mDescVarSep = ';';
43 parent::__construct( $langobj, $maincode,
44 $variants,
45 $variantfallbacks,
46 $flags,
47 $manualLevel );
48 $names = array(
49 'gan' => '原文',
50 'gan-hans' => '简体',
51 'gan-hant' => '繁體',
52 );
53 $this->mVariantNames = array_merge( $this->mVariantNames, $names );
54 }
55
56 function loadDefaultTables() {
57 require __DIR__ . '/../../includes/ZhConversion.php';
58 $this->mTables = array(
59 'gan-hans' => new ReplacementArray( $zh2Hans ),
60 'gan-hant' => new ReplacementArray( $zh2Hant ),
61 'gan' => new ReplacementArray
62 );
63 }
64
65 /**
66 * @param string $key
67 * @return string
68 */
69 function convertCategoryKey( $key ) {
70 return $this->autoConvert( $key, 'gan' );
71 }
72 }
73
74 /**
75 * class that handles both Traditional and Simplified Chinese
76 * right now it only distinguish gan_hans, gan_hant.
77 *
78 * @ingroup Language
79 */
80 class LanguageGan extends LanguageZh {
81 function __construct() {
82 global $wgHooks;
83 parent::__construct();
84
85 $variants = array( 'gan', 'gan-hans', 'gan-hant' );
86 $variantfallbacks = array(
87 'gan' => array( 'gan-hans', 'gan-hant' ),
88 'gan-hans' => array( 'gan' ),
89 'gan-hant' => array( 'gan' ),
90 );
91 $ml = array(
92 'gan' => 'disable',
93 );
94
95 $this->mConverter = new GanConverter( $this, 'gan',
96 $variants, $variantfallbacks,
97 array(),
98 $ml );
99
100 $wgHooks['PageContentSaveComplete'][] = $this->mConverter;
101 }
102
103 /**
104 * word segmentation
105 *
106 * @param string $string
107 * @param string $autoVariant
108 * @return string
109 */
110 function normalizeForSearch( $string, $autoVariant = 'gan-hans' ) {
111 // LanguageZh::normalizeForSearch
112 return parent::normalizeForSearch( $string, $autoVariant );
113 }
114
115 }