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.
|
|
|
|
*/
|
|
|
|
|
2018-01-17 06:26:21 +08:00
|
|
|
use Flarum\Extend;
|
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
|
|
|
|
2018-01-17 06:26:21 +08:00
|
|
|
return [
|
2018-07-23 22:29:38 +08:00
|
|
|
(new Extend\Frontend('forum'))
|
2018-06-20 12:05:33 +08:00
|
|
|
->js(__DIR__.'/js/dist/forum.js')
|
2018-07-23 22:29:38 +08:00
|
|
|
->css(__DIR__.'/less/forum.less'),
|
2018-06-20 12:05:33 +08:00
|
|
|
|
2018-01-17 06:26:21 +08:00
|
|
|
function (Dispatcher $events, Factory $views) {
|
|
|
|
$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);
|
|
|
|
$events->subscribe(Listener\AddFilterByMentions::class);
|
2015-10-11 10:32:57 +08:00
|
|
|
|
2018-01-17 06:26:21 +08:00
|
|
|
$views->addNamespace('flarum-mentions', __DIR__.'/views');
|
|
|
|
},
|
|
|
|
];
|