-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
extend.php
33 lines (28 loc) · 884 Bytes
/
extend.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 fof/open-collective.
*
* Copyright (c) FriendsOfFlarum.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FoF\OpenCollective;
use Flarum\Extend;
use Flarum\Foundation\Paths;
use FoF\OpenCollective\Console\UpdateCommand;
use Illuminate\Console\Scheduling\Event;
return [
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js'),
new Extend\Locales(__DIR__.'/resources/locale'),
(new Extend\Console())
->command(UpdateCommand::class)
->schedule(UpdateCommand::class, function (Event $event) {
$paths = resolve(Paths::class);
$event
->hourly()
->withoutOverlapping()
->appendOutputTo($paths->storage.'/logs/fof-open-collective.log');
}),
];