-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Plugin.php
34 lines (31 loc) · 816 Bytes
/
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
<?php
namespace JosephCrowell\SitemapPretty;
use System\Classes\PluginBase;
/**
* Sitemap Plugin Information File
*/
class Plugin extends PluginBase
{
/**
* @var array Plugin dependencies
*/
public $require = ['Winter.Sitemap'];
/**
* Returns information about this plugin.
*
* @return array
*/
public function pluginDetails()
{
return [
'name' => 'josephcrowell.sitemappretty::lang.plugin.name',
'description' =>
'josephcrowell.sitemappretty::lang.plugin.description',
'author' => 'Joseph Crowell',
'icon' => 'icon-sitemap',
'homepage' =>
'https://github.com/josephcrowell/wn-sitemappretty-plugin',
'replaces' => 'Xeor.Sitemap',
];
}
}