1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Old Church Slavonic (Ѩзыкъ словѣньскъ) 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
|
|
|
* Old Church Slavonic (Ѩзыкъ словѣньскъ) |
26
|
|
|
* |
27
|
|
|
* @ingroup Language |
28
|
|
|
*/ |
29
|
|
|
class LanguageCu extends Language { |
30
|
|
|
/** |
31
|
|
|
* Convert from the nominative form of a noun to some other case |
32
|
|
|
* Invoked with {{grammar:case|word}} |
33
|
|
|
* |
34
|
|
|
* @param string $word |
35
|
|
|
* @param string $case |
36
|
|
|
* @return string |
37
|
|
|
*/ |
38
|
|
|
function convertGrammar( $word, $case ) { |
39
|
|
|
global $wgGrammarForms; |
40
|
|
|
|
41
|
|
|
if ( isset( $wgGrammarForms['сu'][$case][$word] ) ) { |
42
|
|
|
return $wgGrammarForms['сu'][$case][$word]; |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
# These rules are not perfect, but they are currently only used for |
46
|
|
|
# site names so it doesn't matter if they are wrong sometimes. Just add |
47
|
|
|
# a special case for your site name if necessary. |
48
|
|
|
|
49
|
|
|
# join and array_slice instead mb_substr |
50
|
|
|
$ar = []; |
51
|
|
|
preg_match_all( '/./us', $word, $ar ); |
52
|
|
|
if ( !preg_match( "/[a-zA-Z_]/us", $word ) ) { |
53
|
|
|
switch ( $case ) { |
54
|
|
|
case 'genitive': # родительный падеж |
55
|
|
|
if ( ( implode( '', array_slice( $ar[0], -4 ) ) == 'вики' ) |
|
|
|
|
56
|
|
|
|| ( implode( '', array_slice( $ar[0], -4 ) ) == 'Вики' ) |
57
|
|
|
) { |
58
|
|
View Code Duplication |
} elseif ( implode( '', array_slice( $ar[0], -2 ) ) == 'ї' ) { |
59
|
|
|
$word = implode( '', array_slice( $ar[0], 0, -2 ) ) . 'їѩ'; |
60
|
|
|
} |
61
|
|
|
break; |
62
|
|
|
case 'accusative': # винительный падеж |
63
|
|
|
# stub |
64
|
|
|
break; |
65
|
|
|
} |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
return $word; |
69
|
|
|
} |
70
|
|
|
} |
71
|
|
|
|
This check looks for the bodies of
if
statements that have no statements or where all statements have been commented out. This may be the result of changes for debugging or the code may simply be obsolete.These
if
bodies can be removed. If you have an empty if but statements in theelse
branch, consider inverting the condition.could be turned into
This is much more concise to read.