mediawiki-extensions-Echo/special/SpecialNotifications.php
Kaldari 1c2a76ae22 Adding comments and fixing some incorrect comments
Change-Id: Iab1be6ad8700630f2cf3f97b5d5edd542f1c85ec
2012-11-26 18:20:53 -08:00

64 lines
1.4 KiB
PHP

<?php
class SpecialNotifications extends SpecialPage {
public function __construct() {
parent::__construct( 'Notifications' );
}
public function execute( $par ) {
$this->setHeaders();
$out = $this->getOutput();
$out->setPageTitle( $this->msg( 'echo-specialpage' )->text() );
$out->addModules( array( 'ext.echo.special' ) );
$user = $this->getUser();
if ( $user->isAnon() ) {
$out->addWikiMsg( 'echo-anon' );
return;
}
$dbr = wfGetDB( DB_SLAVE );
$res = $dbr->select(
array( 'echo_notification', 'echo_event' ),
'*',
array(
'notification_user' => $user->getID(),
),
__METHOD__,
array(
'ORDER BY' => 'notification_timestamp DESC',
'LIMIT' => 50,
),
array(
'echo_event' => array( 'left join', 'notification_event=event_id' ),
)
);
if ( !$res->numRows() ) {
$out->addWikiMsg( 'echo-none' );
return;
}
$html = '';
foreach ( $res as $row ) {
$event = EchoEvent::newFromRow( $row );
$class = 'mw-echo-notification';
// Retrieve the formatted notification to display
$formatted = EchoNotificationController::formatNotification( $event, $user, 'html' );
if ( $row->notification_read_timestamp === null ) {
$class .= ' mw-echo-unread';
}
$eventType = htmlspecialchars( $event->getType() );
$html .= "\t<li class=\"$class\" data-notification-type=\"$eventType\">$formatted</li>\n";
}
$html = "<ul>\n$html\n</ul>\n";
$out->addHTML( $html );
}
}