PageLangLogFormatter.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. /**
  3. * Formatter for changelang log entries.
  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. * @author Kunal Grover
  22. * @license GPL-2.0-or-later
  23. * @since 1.24
  24. */
  25. /**
  26. * This class formats language change log entries.
  27. *
  28. * @since 1.24
  29. */
  30. class PageLangLogFormatter extends LogFormatter {
  31. protected function getMessageParameters() {
  32. // Get the user language for displaying language names
  33. $userLang = $this->context->getLanguage()->getCode();
  34. $params = parent::getMessageParameters();
  35. // Get the language codes from log
  36. $oldLang = $params[3];
  37. $kOld = strrpos( $oldLang, '[' );
  38. if ( $kOld ) {
  39. $oldLang = substr( $oldLang, 0, $kOld );
  40. }
  41. $newLang = $params[4];
  42. $kNew = strrpos( $newLang, '[' );
  43. if ( $kNew ) {
  44. $newLang = substr( $newLang, 0, $kNew );
  45. }
  46. // Convert language codes to names in user language
  47. $logOld = Language::fetchLanguageName( $oldLang, $userLang )
  48. . ' (' . $oldLang . ')';
  49. $logNew = Language::fetchLanguageName( $newLang, $userLang )
  50. . ' (' . $newLang . ')';
  51. // Add the default message to languages if required
  52. $params[3] = !$kOld ? $logOld : $logOld . ' [' . $this->msg( 'default' ) . ']';
  53. $params[4] = !$kNew ? $logNew : $logNew . ' [' . $this->msg( 'default' ) . ']';
  54. return $params;
  55. }
  56. }