mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-13 18:37:07 +00:00
69e8e948b2
MediaWiki's PHPCS plugin requires documentation comments on all methods, unless those methods are fully typed (all parameters and return value). It turns out that almost all of our methods are fully typed already. Procedure: 1. Find: \*(\s*\*\s*(@param \??[\w\\]+(\|null)? &?\$\w+|@return \??[\w\\]+(\|null)?)\n)+\s*\*/ Replace with: */ This deletes type annotations, except those not representable as PHP type hints such as union types `a|b` or typed arrays `a[]`, or those with documentation beyond type hints, or those on functions with any other annotations. 2. Find: /\*\*/\n\s* Replace with nothing This deletes the remaining comments on methods that had no prose documentation. 3. Undo all changes that PHPCS complains about (those comments were not redundant) 4. Review the diff carefully, these regexps are imprecise :) Change-Id: Ic82e8b23f2996f44951208dbd9cfb4c8e0738dac
64 lines
1.7 KiB
PHP
64 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\DiscussionTools;
|
|
|
|
use MediaWiki\Extension\DiscussionTools\ThreadItem\DatabaseThreadItem;
|
|
use MediaWiki\Linker\LinkRenderer;
|
|
use MediaWiki\Title\TitleFormatter;
|
|
use MediaWiki\Title\TitleValue;
|
|
use MessageLocalizer;
|
|
|
|
/**
|
|
* Displays links to comments and headings represented as ThreadItems.
|
|
*/
|
|
class ThreadItemFormatter {
|
|
|
|
private TitleFormatter $titleFormatter;
|
|
private LinkRenderer $linkRenderer;
|
|
|
|
public function __construct(
|
|
TitleFormatter $titleFormatter,
|
|
LinkRenderer $linkRenderer
|
|
) {
|
|
$this->titleFormatter = $titleFormatter;
|
|
$this->linkRenderer = $linkRenderer;
|
|
}
|
|
|
|
/**
|
|
* Make a link to a thread item on the page.
|
|
*/
|
|
public function makeLink( DatabaseThreadItem $item ): string {
|
|
$title = TitleValue::newFromPage( $item->getPage() )->createFragmentTarget( $item->getId() );
|
|
|
|
$query = [];
|
|
if ( !$item->getRevision()->isCurrent() ) {
|
|
$query['oldid'] = $item->getRevision()->getId();
|
|
}
|
|
|
|
$text = $this->titleFormatter->getPrefixedText( $title );
|
|
$link = $this->linkRenderer->makeLink( $title, $text, [], $query );
|
|
|
|
return $link;
|
|
}
|
|
|
|
/**
|
|
* Make a link to a thread item on the page, with additional information (used on special pages).
|
|
*/
|
|
public function formatLine( DatabaseThreadItem $item, MessageLocalizer $context ): string {
|
|
$contents = [];
|
|
|
|
$contents[] = $this->makeLink( $item );
|
|
|
|
if ( !$item->getRevision()->isCurrent() ) {
|
|
$contents[] = $context->msg( 'discussiontools-findcomment-results-notcurrent' )->escaped();
|
|
}
|
|
|
|
if ( is_string( $item->getTranscludedFrom() ) ) {
|
|
$contents[] = $context->msg( 'discussiontools-findcomment-results-transcluded' )->escaped();
|
|
}
|
|
|
|
return implode( $context->msg( 'word-separator' )->escaped(), $contents );
|
|
}
|
|
|
|
}
|