mediawiki-extensions-Echo/includes/Formatters/EchoForeignPresentationModel.php
Reedy 7619a76877 Namespace Echo Formatters
Change-Id: I5bf398cdb76a577543f6526ac1bee4a73897103d
2022-11-01 21:20:06 -06:00

55 lines
1.4 KiB
PHP

<?php
namespace MediaWiki\Extension\Notifications\Formatters;
use EchoForeignNotifications;
class EchoForeignPresentationModel extends EchoEventPresentationModel {
public function getIconType() {
return 'global';
}
public function getPrimaryLink() {
return false;
}
protected function getHeaderMessageKey() {
$data = $this->event->getExtra();
$section = $data['section'] == 'message' ? 'notice' : $data['section'];
// notification-header-foreign-alert
// notification-header-foreign-notice
// notification-header-foreign-all
return "notification-header-foreign-{$section}";
}
public function getHeaderMessage() {
$msg = parent::getHeaderMessage();
$data = $this->event->getExtra();
$firstWiki = reset( $data['wikis'] );
$names = $this->getWikiNames( [ $firstWiki ] );
$msg->params( $names[0] );
$msg->numParams( count( $data['wikis'] ) - 1 );
$msg->numParams( count( $data['wikis'] ) );
return $msg;
}
public function getBodyMessage() {
$data = $this->event->getExtra();
$msg = $this->msg( 'notification-body-foreign' );
$msg->params( $this->language->listToText( $this->getWikiNames( $data['wikis'] ) ) );
return $msg;
}
protected function getWikiNames( array $wikis ) {
$data = EchoForeignNotifications::getApiEndpoints( $wikis );
$names = [];
foreach ( $wikis as $wiki ) {
$names[] = $data[$wiki]['title'];
}
return $names;
}
}