-
Notifications
You must be signed in to change notification settings - Fork 0
/
Plugin.php
40 lines (36 loc) · 1.04 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
<?php namespace MaDnh\Disqus;
use System\Classes\PluginBase;
use Backend;
class Plugin extends PluginBase
{
public function pluginDetails()
{
return [
'name' => 'madnh.disqus::lang.plugin.name',
'description' => 'madnh.disqus::lang.plugin.description',
'author' => 'MaDnh',
'icon' => 'icon-comments-o',
'homepage' => 'https://github.com/madnh/disqus_plugin'
];
}
public function registerComponents()
{
return [
'MaDnh\Disqus\Components\Disqus' => 'disqus'
];
}
public function registerSettings()
{
return [
'settings' => [
'label' => 'Disqus',
'description' => 'The #1 way to build your audience',
'category' => 'Plugins',
'icon' => 'icon-comments-o',
'class' => 'MaDnh\Disqus\Models\Settings',
'order' => 500,
'permissions' => ['madnh.disqus.access_settings']
]
];
}
}