mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-24 16:34:21 +00:00
5919e4e371
Bug: T299572 Depends-On: Idb3a87fd18330f90a8cdc1276994d54288e17b28 Change-Id: I3b58f337bb2ea1f5255fc0a41dbd7a5ad8c433db
52 lines
1.4 KiB
PHP
52 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Our override of the built-in Echo helper for displaying section titles.
|
|
*
|
|
* @file
|
|
* @ingroup Extensions
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace MediaWiki\Extension\DiscussionTools\Notifications;
|
|
|
|
use EchoDiscussionParser;
|
|
use EchoPresentationModelSection;
|
|
use MWException;
|
|
|
|
/**
|
|
* Built-in Echo events store section titles as wikitext, and when displaying or linking to them,
|
|
* they parse it and then strip the formatting to get the plaintext versions.
|
|
*
|
|
* Our subscription notifications store section titles as plaintext already, so this processing is
|
|
* unnecessary and incorrect (text that looks like markup can disappear).
|
|
*/
|
|
class PlaintextEchoPresentationModelSection extends EchoPresentationModelSection {
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
protected function getParsedSectionTitle() {
|
|
$plaintext = $this->getRawSectionTitle();
|
|
if ( !$plaintext ) {
|
|
return false;
|
|
}
|
|
$plaintext = trim( $plaintext );
|
|
return $this->language->truncateForVisual( $plaintext, EchoDiscussionParser::DEFAULT_SNIPPET_LENGTH );
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getTitleWithSection() {
|
|
$title = $this->event->getTitle();
|
|
if ( $title === null ) {
|
|
throw new MWException( 'Event #' . $this->event->getId() . ' with no title' );
|
|
}
|
|
$section = $this->getParsedSectionTitle();
|
|
if ( $section ) {
|
|
$title = $title->createFragmentTarget( $section );
|
|
}
|
|
return $title;
|
|
}
|
|
}
|