blob: d2c79438f416217bfab9870d674675657e799a0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
<?php
declare( strict_types = 1 );
namespace MediaWiki\Extension\Translate\TranslatorInterface;
use DifferenceEngine;
use EditPage;
use MediaWiki\Diff\Hook\ArticleContentOnDiffHook;
use MediaWiki\Hook\AlternateEditHook;
use MediaWiki\Hook\EditPage__showEditForm_initialHook;
use MediaWiki\Languages\LanguageFactory;
use MessageHandle;
use OutputPage;
/**
* Integration point to MediaWiki for the legacy translation aids.
* @author Niklas Laxström
* @license GPL-2.0-or-later
*/
class LegacyInterfaceHookHandler
implements AlternateEditHook, ArticleContentOnDiffHook, EditPage__showEditForm_initialHook
{
/** @var LanguageFactory */
private $languageFactory;
public function __construct( LanguageFactory $languageFactory ) {
$this->languageFactory = $languageFactory;
}
/**
* Do not show the usual introductory messages on edit page for messages.
* @param EditPage $editPage
*/
public function onAlternateEdit( $editPage ): void {
$handle = new MessageHandle( $editPage->getTitle() );
if ( $handle->isValid() ) {
$editPage->suppressIntro = true;
}
}
/**
* Enhances the action=edit view for wikitext editor with some translation aids
* @param EditPage $editPage
* @param OutputPage $out
*/
// phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName
public function onEditPage__showEditForm_initial( $editPage, $out ): void {
// phpcs:enable
$handle = new MessageHandle( $editPage->getTitle() );
if ( !$handle->isValid() ) {
return;
}
$context = $out->getContext();
$request = $context->getRequest();
if ( $editPage->firsttime && !$request->getCheck( 'oldid' ) &&
!$request->getCheck( 'undo' ) ) {
if ( $handle->isFuzzy() ) {
$editPage->textbox1 = TRANSLATE_FUZZY . $editPage->textbox1;
}
}
$th = new LegacyTranslationAids( $handle, $context, $this->languageFactory );
$editPage->editFormTextTop .= $th->getBoxes();
}
/**
* Enhances the action=diff view with some translations aids
* @param DifferenceEngine $diffEngine
* @param OutputPage $output
*/
public function onArticleContentOnDiff( $diffEngine, $output ): void {
$title = $diffEngine->getTitle();
$handle = new MessageHandle( $title );
if ( !$handle->isValid() ) {
return;
}
$th = new LegacyTranslationAids( $handle, $diffEngine->getContext(), $this->languageFactory );
$output->addHTML( $th->getBoxes() );
}
}
|