-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlugin.php
81 lines (68 loc) · 1.72 KB
/
Plugin.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
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
<?php namespace Baoweb\AssetsCacheBuster;
use Backend;
use System\Classes\PluginBase;
/**
* AssetsCacheBuster Plugin Information File
*/
class Plugin extends PluginBase
{
/**
* Returns information about this plugin.
*
* @return array
*/
public function pluginDetails()
{
return [
'name' => 'AssetsCacheBuster',
'description' => 'No description provided yet...',
'author' => 'Baoweb',
'icon' => 'icon-leaf'
];
}
public function registerMarkupTags()
{
return [
'filters' => [
// A local method, i.e $this->makeTextAllCaps()
'cacheBuster' => [$this, 'generateCacheBuster']
],
/*
'functions' => [
// A static method call, i.e Form::open()
'form_open' => ['October\Rain\Html\Form', 'open'],
// Using an inline closure
'helloWorld' => function() { return 'Hello World!'; }
]
*/
];
}
public function generateCacheBuster($text)
{
$defaultVersion = 3;
$version = $defaultVersion;
$fileVersions = [
'assets/css/app.css' => 5
];
if(isset($fileVersions[$text])) {
$version = $fileVersions['assets/css/app.css'];
}
return $text . '?v=' . $version;
}
/**
* Register method, called when the plugin is first registered.
*
* @return void
*/
public function register()
{
}
/**
* Boot method, called right before the request route.
*
* @return array
*/
public function boot()
{
}
}