mediawiki-extensions-Echo/jobs/NotificationJob.php

12 lines
277 B
PHP
Raw Normal View History

<?php
class EchoNotificationJob extends Job {
function __construct( $title, $params ) {
parent::__construct( 'EchoNotificationJob', $title, $params );
$this->event = $params['event'];
}
function run() {
EchoNotificationController::notify( $this->event, false );
}
}