forked from FriendsOfFlarum/split
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap.php
33 lines (30 loc) · 1018 Bytes
/
bootstrap.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/*
* This file is part of flagrow/flarum-ext-split.
*
* Copyright (c) Flagrow.
*
* http://flagrow.github.io
*
* For the full copyright and license information, please view the license.md
* file that was distributed with this source code.
*/
namespace Flagrow\Split;
use Flagrow\Split\Api\Controllers\SplitController;
use Flarum\Discussion\Event\Renamed;
use Flarum\Extend;
use Illuminate\Contracts\Events\Dispatcher;
return [
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js'),
(new Extend\Frontend('forum'))
->js(__DIR__.'/js/dist/forum.js'),
(new Extend\Locales(__DIR__.'/locale')),
(new Extend\Routes('api'))
->post('/split', 'flagrow.split.run', SplitController::class),
function (Dispatcher $events) {
$events->subscribe(Listeners\AddSplitApi::class);
$events->subscribe(Listeners\CreatePostWhenSplit::class);
$events->listen(Renamed::class, Listeners\UpdateSplitTitleAfterDiscussionWasRenamed::class);
},
];