Upgrade to use of new MediaWiki\Title for use in MW 1.44

This commit is contained in:
2025-07-09 22:27:34 +02:00
parent 90edd23e4f
commit 5a32049982
10 changed files with 30 additions and 26 deletions

View File

@@ -46,11 +46,11 @@ class Source {
private $content;
/**
* Creates a Source object from a \Title.
* @param \Title $title Title object from which to create the Source.
* Creates a Source object from a MediaWiki\Title\Title.
* @param MediaWiki\Title\Title $title Title object from which to create the Source.
* @return Source Source object created from the title.
*/
public static function createFromTitle( \Title $title, Config $config ) {
public static function createFromTitle( MediaWiki\Title\Title $title, Config $config ) {
$source = new Source( $config );
$source->title = $title;
return $source;
@@ -62,12 +62,12 @@ class Source {
* This factory can be called e.g. from a onPageContentSave event handler
* which knows both these parameters.
*
* @param \Title $title Title of the source page
* @param \MediaWiki\Title\Title $title Title of the source page
* @param String $text String representation of the page content
* @param Config $config LinkTitles configuration
* @return Source Source object created from the title and the text
*/
public static function createFromTitleAndText( \Title $title, $text, Config $config ) {
public static function createFromTitleAndText( \MediaWiki\Title\Title $title, $text, Config $config ) {
$source = Source::createFromTitle( $title, $config);
$source->text = $text;
return $source;
@@ -158,7 +158,7 @@ class Source {
/**
* Gets the title.
*
* @return \Title Title of the source page.
* @return MediaWiki\Title\Title Title of the source page.
*/
public function getTitle() {
if ( $this->title === null ) {
@@ -249,7 +249,7 @@ class Source {
/**
* Obtain a WikiPage object.
* Workaround for MediaWiki 1.36+ which deprecated Wikipage::factory.
* @param \Title $title
* @param MediaWiki\Title\Title $title
* @return WikiPage object
*/
private static function getPageObject( $title ) {