forked from skydiver/october-plugin-simplegoogleanalytics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlugin.php
More file actions
27 lines (20 loc) · 736 Bytes
/
Plugin.php
File metadata and controls
27 lines (20 loc) · 736 Bytes
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
<?php
namespace Martin\SimpleGoogleAnalytics;
use System\Classes\PluginBase;
use System\Classes\SettingsManager;
class Plugin extends PluginBase {
public function pluginDetails() {
return [
'name' => 'martin.simplegoogleanalytics::lang.plugin.name',
'description' => 'martin.simplegoogleanalytics::lang.plugin.description',
'author' => 'Martin M.',
'icon' => 'icon-bar-chart'
];
}
public function registerComponents() {
return [
'Martin\SimpleGoogleAnalytics\Components\SimpleGoogleAnalytics' => 'simplegoogleanalytics',
];
}
}
?>