2015-05-07 20:56:02 +08:00
|
|
|
<?php
|
|
|
|
|
2015-09-04 11:00:25 +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:19:29 +08:00
|
|
|
use Flarum\Extend;
|
2015-10-11 09:13:13 +08:00
|
|
|
use Flarum\Sticky\Listener;
|
|
|
|
use Illuminate\Contracts\Events\Dispatcher;
|
2015-05-07 20:56:02 +08:00
|
|
|
|
2018-01-17 06:19:29 +08:00
|
|
|
return [
|
|
|
|
(new Extend\Assets('forum'))
|
|
|
|
->defaultAssets(__DIR__)
|
|
|
|
->bootstrapper('flarum/sticky/main'),
|
|
|
|
(new Extend\Assets('admin'))
|
|
|
|
->asset(__DIR__.'/js/admin/dist/extension.js')
|
|
|
|
->bootstrapper('flarum/sticky/main'),
|
|
|
|
function (Dispatcher $events) {
|
|
|
|
$events->subscribe(Listener\AddApiAttributes::class);
|
|
|
|
$events->subscribe(Listener\CreatePostWhenDiscussionIsStickied::class);
|
|
|
|
$events->subscribe(Listener\PinStickiedDiscussionsToTop::class);
|
|
|
|
$events->subscribe(Listener\SaveStickyToDatabase::class);
|
|
|
|
},
|
|
|
|
];
|