mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ReplaceText
synced 2024-12-11 14:26:00 +00:00
14 lines
335 B
PHP
14 lines
335 B
PHP
|
<?php
|
||
|
|
||
|
use MediaWiki\MediaWikiServices;
|
||
|
|
||
|
class ALItem {
|
||
|
public $text;
|
||
|
public $label;
|
||
|
|
||
|
static function newFromPage( $page_name_or_title, $desc = null, $query = array() );
|
||
|
static function newFromSpecialPage( $page_name );
|
||
|
static function newFromEditLink( $page_name, $desc );
|
||
|
static function newFromExternalLink( $url, $label );
|
||
|
}
|