3 * Formatter for changelang log entries.
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.
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.
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
21 * @author Kunal Grover
22 * @license GPL-2.0-or-later
26 use MediaWiki\Languages\LanguageNameUtils
;
29 * This class formats language change log entries.
33 class PageLangLogFormatter
extends LogFormatter
{
34 private LanguageNameUtils
$languageNameUtils;
36 public function __construct(
38 LanguageNameUtils
$languageNameUtils
40 parent
::__construct( $entry );
41 $this->languageNameUtils
= $languageNameUtils;
44 protected function getMessageParameters() {
45 // Get the user language for displaying language names
46 $userLang = $this->context
->getLanguage()->getCode();
47 $params = parent
::getMessageParameters();
49 // Get the language codes from log
50 $oldLang = $params[3];
51 $kOld = strrpos( $oldLang, '[' );
53 $oldLang = substr( $oldLang, 0, $kOld );
56 $newLang = $params[4];
57 $kNew = strrpos( $newLang, '[' );
59 $newLang = substr( $newLang, 0, $kNew );
62 // Convert language codes to names in user language
63 $logOld = $this->languageNameUtils
->getLanguageName( $oldLang, $userLang )
64 . ' (' . $oldLang . ')';
65 $logNew = $this->languageNameUtils
->getLanguageName( $newLang, $userLang )
66 . ' (' . $newLang . ')';
68 // Add the default message to languages if required
69 $params[3] = !$kOld ?
$logOld : $logOld . ' [' . $this->msg( 'default' ) . ']';
70 $params[4] = !$kNew ?
$logNew : $logNew . ' [' . $this->msg( 'default' ) . ']';