framework/extensions/akismet/extend.php

34 lines
884 B
PHP
Raw Normal View History

2015-09-04 11:14:02 +08:00
<?php
/*
* This file is part of Flarum.
*
2019-11-30 07:01:27 +08:00
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
2015-09-04 11:14:02 +08:00
*/
2015-10-11 20:47:51 +08:00
use Flarum\Akismet\Listener;
use Flarum\Akismet\Provider\AkismetProvider;
use Flarum\Approval\Event\PostWasApproved;
2018-01-22 05:20:58 +08:00
use Flarum\Extend;
use Flarum\Post\Event\Hidden;
use Flarum\Post\Event\Saving;
2015-09-04 11:14:02 +08:00
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),
];