* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Flarum\Extend; use Flarum\Likes\Listener; use Illuminate\Contracts\Events\Dispatcher; return [ (new Extend\Assets('forum')) ->asset(__DIR__.'/js/forum/dist/extension.js') ->asset(__DIR__.'/less/forum/extension.less') ->bootstrapper('flarum/likes/main'), (new Extend\Assets('admin')) ->asset(__DIR__.'/js/admin/dist/extension.js') ->bootstrapper('flarum/likes/main'), function (Dispatcher $events) { $events->subscribe(Listener\AddPostLikesRelationship::class); $events->subscribe(Listener\SaveLikesToDatabase::class); $events->subscribe(Listener\SendNotificationWhenPostIsLiked::class); }, ];