Merge "Rephrase enotif_lastdiff and enotif_lastvisited"
[lhc/web/wiklou.git] / languages / FakeConverter.php
1 <?php
2 /**
3 * Internationalisation 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 * A fake language converter
26 *
27 * @ingroup Language
28 */
29 class FakeConverter {
30 /**
31 * @var Language
32 */
33 public $mLang;
34
35 function __construct( $langobj ) {
36 $this->mLang = $langobj;
37 }
38
39 function autoConvert( $text, $variant = false ) {
40 return $text;
41 }
42
43 function autoConvertToAllVariants( $text ) {
44 return [ $this->mLang->getCode() => $text ];
45 }
46
47 function convert( $t ) {
48 return $t;
49 }
50
51 function convertTo( $text, $variant ) {
52 return $text;
53 }
54
55 /**
56 * @param Title $t
57 * @return mixed
58 */
59 function convertTitle( $t ) {
60 return $t->getPrefixedText();
61 }
62
63 function convertNamespace( $ns ) {
64 return $this->mLang->getFormattedNsText( $ns );
65 }
66
67 /**
68 * @return string[]
69 */
70 function getVariants() {
71 return [ $this->mLang->getCode() ];
72 }
73
74 function getVariantFallbacks( $variant ) {
75 return $this->mLang->getCode();
76 }
77
78 function getPreferredVariant() {
79 return $this->mLang->getCode();
80 }
81
82 function getDefaultVariant() {
83 return $this->mLang->getCode();
84 }
85
86 function getURLVariant() {
87 return '';
88 }
89
90 function getConvRuleTitle() {
91 return false;
92 }
93
94 function findVariantLink( &$l, &$n, $ignoreOtherCond = false ) {
95 }
96
97 function getExtraHashOptions() {
98 return '';
99 }
100
101 function getParsedTitle() {
102 return '';
103 }
104
105 function markNoConversion( $text, $noParse = false ) {
106 return $text;
107 }
108
109 function convertCategoryKey( $key ) {
110 return $key;
111 }
112
113 function validateVariant( $variant = null ) {
114 return $variant === $this->mLang->getCode() ? $variant : null;
115 }
116
117 function translate( $text, $variant ) {
118 return $text;
119 }
120
121 public function updateConversionTable( Title $title ) {
122 }
123 }