ParsoidParser: Record ParserOptions watcher on ParserOutput object
[mediawiki.git] / includes / logging / PageLangLogFormatter.php
blob5a8947561cdbbcb28b7ea2ef54181a8c7ab35615
1 <?php
2 /**
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
20 * @file
21 * @author Kunal Grover
22 * @license GPL-2.0-or-later
23 * @since 1.24
26 use MediaWiki\MediaWikiServices;
28 /**
29 * This class formats language change log entries.
31 * @since 1.24
33 class PageLangLogFormatter extends LogFormatter {
34 protected function getMessageParameters() {
35 // Get the user language for displaying language names
36 $userLang = $this->context->getLanguage()->getCode();
37 $params = parent::getMessageParameters();
39 // Get the language codes from log
40 $oldLang = $params[3];
41 $kOld = strrpos( $oldLang, '[' );
42 if ( $kOld ) {
43 $oldLang = substr( $oldLang, 0, $kOld );
46 $newLang = $params[4];
47 $kNew = strrpos( $newLang, '[' );
48 if ( $kNew ) {
49 $newLang = substr( $newLang, 0, $kNew );
52 // Convert language codes to names in user language
53 $languageNameUtils = MediaWikiServices::getInstance()->getLanguageNameUtils();
54 $logOld = $languageNameUtils->getLanguageName( $oldLang, $userLang )
55 . ' (' . $oldLang . ')';
56 $logNew = $languageNameUtils->getLanguageName( $newLang, $userLang )
57 . ' (' . $newLang . ')';
59 // Add the default message to languages if required
60 $params[3] = !$kOld ? $logOld : $logOld . ' [' . $this->msg( 'default' ) . ']';
61 $params[4] = !$kNew ? $logNew : $logNew . ' [' . $this->msg( 'default' ) . ']';
62 return $params;