forked from Biz-mark/Quicksilver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlugin.php
More file actions
105 lines (95 loc) · 2.92 KB
/
Copy pathPlugin.php
File metadata and controls
105 lines (95 loc) · 2.92 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php namespace BizMark\Quicksilver;
use Backend, Event;
use System\Classes\PluginBase;
use Illuminate\Contracts\Http\Kernel;
use BizMark\Quicksilver\Models\Settings;
use BizMark\Quicksilver\Classes\Cache;
use BizMark\Quicksilver\Classes\Console\ClearCache;
use BizMark\Quicksilver\Classes\Contracts\Cache as PageCacheContract;
use BizMark\Quicksilver\Classes\Middleware\CacheResponse;
use BizMark\Quicksilver\Classes\Event\CacheClearHandler;
use BizMark\Quicksilver\ReportWidgets\CacheStatus;
use BizMark\Quicksilver\Classes\Schedule\CheckScheduledPosts;
/**
* Quicksilver Plugin Information File
*
* This code is based on Laravel Page Cache package https://github.com/JosephSilber/page-cache by JosephSilber.
* OctoberCMS integration and adaptation by Nick Khaetsky at Biz-Mark.
*/
class Plugin extends PluginBase
{
/**
* Returns information about this plugin.
*
* @return array
*/
public function pluginDetails(): array
{
return [
'name' => 'bizmark.quicksilver::lang.plugin.name',
'description' => 'bizmark.quicksilver::lang.plugin.description',
'author' => 'Nick Khaetsky, Biz-Mark',
'icon' => 'icon-bolt'
];
}
/**
* Register method, called when the plugin is first registered.
*
* @return void
*/
public function register(): void
{
$this->app->bind(PageCacheContract::class, Cache::class);
$this->registerConsoleCommand('page-cache:clear', ClearCache::class);
}
/**
* Boot method, called right before the request route.
*
* @return void
*/
public function boot(): void
{
$this->app[Kernel::class]->prependMiddleware(CacheResponse::class);
$this->addEventListeners();
}
public function addEventListeners()
{
\Event::subscribe(CacheClearHandler::class);
}
/**
* Registering schedule for clearing cache for scheduled posts
* */
public function registerSchedule($schedule): void
{
CheckScheduledPosts::check($schedule);
}
/**
* Returns the array with report widgets for the dashboard.
*
* @return array
*/
public function registerReportWidgets(): array
{
return [
CacheStatus::class => [
'label' => 'bizmark.quicksilver::lang.reportwidget.cachestatus.name',
'context' => 'dashboard'
],
];
}
/**
* @return array
*/
public function registerSettings(): array
{
return [
'options' => [
'label' => 'bizmark.quicksilver::lang.settings.label',
'description' => 'bizmark.quicksilver::lang.settings.description',
'class' => Settings::class,
'icon' => 'icon-cog',
'category' => 'bizmark.quicksilver::lang.settings.label'
]
];
}
}