38 lines
978 B
PHP
Raw Normal View History

2015-09-04 12:44:02 +09:30
<?php
/*
* This file is part of Flarum.
*
2019-11-29 23:01:27 +00:00
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
2015-09-04 12:44:02 +09:30
*/
2015-10-11 23:17:51 +10:30
use Flarum\Akismet\Listener;
use Flarum\Akismet\Provider\AkismetProvider;
use Flarum\Approval\Event\PostWasApproved;
2018-01-21 22:20:58 +01:00
use Flarum\Extend;
use Flarum\Post\Event\Hidden;
use Flarum\Post\Event\Saving;
use Flarum\Post\Post;
2015-09-04 12:44:02 +09:30
return [
(new Extend\Frontend('forum'))
->js(__DIR__.'/js/dist/forum.js'),
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js'),
new Extend\Locales(__DIR__.'/locale'),
(new Extend\Event())
->listen(Hidden::class, Listener\SubmitSpam::class)
->listen(PostWasApproved::class, Listener\SubmitHam::class)
->listen(Saving::class, Listener\ValidatePost::class),
(new Extend\ServiceProvider())
->register(AkismetProvider::class),
(new Extend\Model(Post::class))
->cast('is_spam', 'bool'),
];