Page MenuHomeWickedGov Phorge

DisablePresentationModel.php
No OneTemporary

Size
2 KB
Referenced Files
None
Subscribers
None

DisablePresentationModel.php

<?php
/**
* Copyright (C) 2022 Kunal Mehta <legoktm@debian.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*/
namespace MediaWiki\Extension\OATHAuth\Notifications;
use MediaWiki\Extension\Notifications\Formatters\EchoEventPresentationModel;
use MediaWiki\SpecialPage\SpecialPage;
use MediaWiki\Title\Title;
class DisablePresentationModel extends EchoEventPresentationModel {
/**
* @inheritDoc
*/
public function getIconType() {
return 'site';
}
/** @inheritDoc */
protected function getHeaderMessageKey() {
return $this->event->getExtraParam( 'activeDevices', 0 ) === 0
? 'notification-header-oathauth-disable'
: 'notification-header-oathauth-remove-device';
}
/**
* @inheritDoc
*/
public function getPrimaryLink() {
return [
'url' => SpecialPage::getTitleFor( 'OATHManage' )->getLocalURL(),
'label' => $this->msg( 'oathauth-notifications-disable-primary' )->text()
];
}
/**
* @inheritDoc
*/
public function getSecondaryLinks() {
$link = $this->msg( 'oathauth-notifications-disable-helplink' )->inContentLanguage();
$title = Title::newFromText( $link->plain() );
if ( !$title ) {
// Invalid title, skip
return [];
}
return [ [
'url' => $title->getLocalURL(),
'label' => $this->msg( 'oathauth-notifications-disable-help' )->text(),
'icon' => 'help',
] ];
}
/**
* @inheritDoc
*/
public function getBodyMessage() {
$helpMessageKey = $this->event->getExtraParam( 'self', true )
? 'notification-body-oathauth-disable'
: 'notification-body-oathauth-disable-other';
$message = $this->getMessageWithAgent( $helpMessageKey );
if ( $this->event->getExtraParam( 'activeDevices', 0 ) >= 1 ) {
$remainingMessage = $this->getMessageWithAgent( 'notification-body-oathauth-disable-remaining' );
$remainingMessage->params( $this->event->getExtraParam( 'activeDevices', 0 ) );
$message = $this->msg( 'rawmessage' )->rawParams(
$message->escaped()
. $this->msg( 'word-separator' )->escaped()
. $remainingMessage->escaped()
);
}
return $message;
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Aug 19, 11:27 (3 w, 20 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
24/09/a254cfa21634fdcc58c25c52f081
Default Alt Text
DisablePresentationModel.php (2 KB)

Event Timeline