2015-05-14 20:31:03 +08:00
|
|
|
<?php
|
|
|
|
|
2015-09-04 11:01:19 +08:00
|
|
|
/*
|
|
|
|
* This file is part of Flarum.
|
|
|
|
*
|
|
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
2015-10-11 10:32:57 +08:00
|
|
|
use Flarum\Mentions\Listener;
|
|
|
|
use Illuminate\Contracts\Events\Dispatcher;
|
|
|
|
use Illuminate\Contracts\View\Factory;
|
2015-05-14 20:31:03 +08:00
|
|
|
|
2015-10-11 10:32:57 +08:00
|
|
|
return function (Dispatcher $events, Factory $views) {
|
|
|
|
$events->subscribe(Listener\AddClientAssets::class);
|
|
|
|
$events->subscribe(Listener\AddPostMentionedByRelationship::class);
|
|
|
|
$events->subscribe(Listener\FormatPostMentions::class);
|
|
|
|
$events->subscribe(Listener\FormatUserMentions::class);
|
|
|
|
$events->subscribe(Listener\UpdatePostMentionsMetadata::class);
|
|
|
|
$events->subscribe(Listener\UpdateUserMentionsMetadata::class);
|
2016-02-04 05:34:08 +08:00
|
|
|
$events->subscribe(Listener\AddFilterByMentions::class);
|
2015-10-11 10:32:57 +08:00
|
|
|
|
|
|
|
$views->addNamespace('flarum-mentions', __DIR__.'/views');
|
|
|
|
};
|