2021-03-05 20:43:49 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace MediaWiki\Extension\DiscussionTools;
|
|
|
|
|
|
|
|
use MediaWiki\Cache\LinkBatchFactory;
|
|
|
|
use MediaWiki\Linker\LinkRenderer;
|
|
|
|
use SpecialPage;
|
|
|
|
|
|
|
|
class SpecialTopicSubscriptions extends SpecialPage {
|
|
|
|
|
2022-10-21 19:34:18 +00:00
|
|
|
private LinkRenderer $linkRenderer;
|
|
|
|
private LinkBatchFactory $linkBatchFactory;
|
2021-03-05 20:43:49 +00:00
|
|
|
|
|
|
|
public function __construct(
|
|
|
|
LinkRenderer $linkRenderer,
|
|
|
|
LinkBatchFactory $linkBatchFactory
|
|
|
|
) {
|
|
|
|
parent::__construct( 'TopicSubscriptions' );
|
|
|
|
$this->linkRenderer = $linkRenderer;
|
|
|
|
$this->linkBatchFactory = $linkBatchFactory;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function execute( $subpage ) {
|
|
|
|
$this->requireLogin();
|
|
|
|
|
|
|
|
parent::execute( $subpage );
|
|
|
|
|
|
|
|
$this->getOutput()->addHtml( $this->msg( 'discussiontools-topicsubscription-special-intro' )->parseAsBlock() );
|
|
|
|
|
|
|
|
$this->getOutput()->enableOOUI();
|
|
|
|
$pager = new TopicSubscriptionsPager(
|
|
|
|
$this->getContext(),
|
|
|
|
$this->linkRenderer,
|
|
|
|
$this->linkBatchFactory
|
|
|
|
);
|
|
|
|
$this->getOutput()->addParserOutputContent( $pager->getFullOutput() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function getDescription() {
|
|
|
|
return $this->msg( 'discussiontools-topicsubscription-special-title' )->text();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|