38 parent::__construct(
'PageLanguage',
'pagelang' );
46 $this->
getOutput()->addModules(
'mediawiki.misc-authed-ooui' );
47 return parent::preText();
53 $title = $defaultName ? Title::newFromText( $defaultName ) :
null;
55 $defaultPageLanguage =
56 ContentHandler::getForTitle(
$title )->getPageLanguage(
$title );
57 $hasCustomLanguageSet = !$defaultPageLanguage->equals(
$title->getPageLanguage() );
59 $hasCustomLanguageSet =
false;
65 'label-message' =>
'pagelang-name',
66 'default' =>
$title ?
$title->getPrefixedText() : $defaultName,
67 'autofocus' => $defaultName ===
null,
73 (string)$this->
msg(
'pagelang-use-default' )->escaped() => 1,
74 (string)$this->
msg(
'pagelang-select-lang' )->escaped() => 2,
76 $page[
'selectoptions'] = [
77 'id' =>
'mw-pl-options',
79 'options' => $selectoptions,
80 'default' => $hasCustomLanguageSet ? 2 : 1
85 $languages = Language::fetchLanguageNames( $userLang,
'mwfile' );
88 $options[
"$code - $name"] = $code;
92 'id' =>
'mw-pl-languageselector',
93 'cssclass' =>
'mw-languageselector',
95 'options' => $options,
96 'label-message' =>
'pagelang-language',
98 $title->getPageLanguage()->getCode() :
99 $this->
getConfig()->get(
'LanguageCode' ),
105 'label-message' =>
'pagelang-reason'
123 Hooks::run(
'LanguageSelector', [ $this->
getOutput(),
'mw-languageselector' ] );
133 $pageName = $data[
'pagename'];
136 if ( $data[
'selectoptions'] == 1 ) {
137 $newLanguage =
'default';
139 $newLanguage = $data[
'language'];
143 $title = Title::newFromTextThrow( $pageName );
149 $errors =
$title->getUserPermissionsErrors(
'edit', $this->
getUser() );
153 $wikitext = $out->formatPermissionsErrorMessage( $errors );
155 return Status::newFatal(
new RawMessage(
'$1', [ $wikitext ] ) );
159 $this->goToUrl =
$title->getFullUrlForRedirect(
160 $title->isRedirect() ? [
'redirect' =>
'no' ] : []
167 $data[
'reason'] ??
''
180 $newLanguage, $reason, array $tags = [] ) {
182 $defLang =
$context->getConfig()->get(
'LanguageCode' );
184 $pageId =
$title->getArticleID();
188 return Status::newFatal(
189 'pagelang-nonexistent-page',
196 $oldLanguage = $dbw->selectField(
199 [
'page_id' => $pageId ],
204 if ( $newLanguage ===
'default' ) {
209 if ( $newLanguage === $oldLanguage ) {
211 if ( !$oldLanguage ) {
214 'pagelang-unchanged-language-default',
217 'pagelang-unchanged-language'
220 return Status::newFatal(
221 'pagelang-unchanged-language',
228 $logOld = $oldLanguage ?: $defLang .
'[def]';
229 $logNew = $newLanguage ?: $defLang .
'[def]';
234 [
'page_lang' => $newLanguage ],
236 'page_id' => $pageId,
237 'page_lang' => $oldLanguage
242 if ( !$dbw->affectedRows() ) {
243 return Status::newFatal(
'pagelang-db-failed' );
248 '4::oldlanguage' => $logOld,
249 '5::newlanguage' => $logNew
252 $entry->setPerformer(
$context->getUser() );
253 $entry->setTarget(
$title );
254 $entry->setParameters( $logParams );
255 $entry->setComment( $reason );
256 $entry->addTags( $tags );
258 $logid = $entry->insert();
259 $entry->publish( $logid );
262 $title->invalidateCache();
264 return Status::newGood( (
object)[
265 'oldLanguage' => $logOld,
266 'newLanguage' => $logNew,
273 $this->
getOutput()->redirect( $this->goToUrl );
277 $moveLogPage =
new LogPage(
'pagelang' );
278 $out1 = Xml::element(
'h2',
null, $moveLogPage->getName()->text() );
281 return $out1 . $out2;
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
static create( $msg, $code=null, array $data=null)
Create an IApiMessage for the message.
Special page which uses an HTMLForm to handle processing.
string null $par
The sub-page of the special page.
static showLogExtract(&$out, $types=[], $page='', $user='', $param=[])
Show log extract.
Class to simplify the use of log pages.
Class for creating new log entries and inserting them into the database.
Variant of the Message class.
Special page for changing the content language of a page.
getFormFields()
Get an HTMLForm descriptor array.
postText()
Add post-text to the form.
prefixSearchSubpages( $search, $limit, $offset)
Return an array of subpages beginning with $search that this special page will accept.
onSuccess()
Do something exciting on successful processing of the form, most likely to show a confirmation messag...
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
static changePageLanguage(IContextSource $context, Title $title, $newLanguage, $reason, array $tags=[])
alterForm(HTMLForm $form)
Play with the HTMLForm if you need to more substantially.
doesWrites()
Indicates whether this special page may perform database writes.
getDisplayFormat()
Get display format for the form.
string $goToUrl
URL to go to if language change successful.
preText()
Add pre-text to the form.
getOutput()
Get the OutputPage being used for this instance.
getUser()
Shortcut to get the User executing this instance.
getContext()
Gets the context this SpecialPage is executed in.
msg( $key,... $params)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
getLanguage()
Shortcut to get user's language.
prefixSearchString( $search, $limit, $offset)
Perform a regular substring search for prefixSearchSubpages.
Represents a title within MediaWiki.
Interface for objects which can provide a MediaWiki context on request.
switch( $options['output']) $languages