This repository has been archived by the owner on May 13, 2023. It is now read-only.
forked from FriendsOfFlarum/sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extend.php
55 lines (45 loc) · 1.54 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/*
* This file is part of fof/sitemap.
*
* Copyright (c) FriendsOfFlarum.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
*/
namespace FoF\Sitemap;
use Flarum\Extend;
use Flarum\Settings\SettingsRepositoryInterface;
use FoF\Sitemap\Controllers\SitemapController;
use Illuminate\Console\Scheduling\Event;
return [
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js'),
(new Extend\Routes('forum'))
->get('/sitemap.xml', 'fof-sitemap-index', SitemapController::class),
new Extend\Locales(__DIR__.'/resources/locale'),
(new Extend\ServiceProvider())
->register(Providers\ResourceProvider::class),
(new Extend\Console())
->command(Commands\BuildSitemapCommand::class)
->schedule(Commands\BuildSitemapCommand::class, function (Event $event) {
/** @var SettingsRepositoryInterface */
$settings = resolve(SettingsRepositoryInterface::class);
$frequency = $settings->get('fof-sitemap.frequency');
$event->withoutOverlapping();
switch ($frequency) {
case 'twice-daily':
$event->twiceDaily();
break;
case 'hourly':
$event->hourly();
break;
default:
$event->daily();
break;
}
}),
(new Extend\View())
->namespace('fof-sitemap', __DIR__.'/views'),
];