forked from brol/zoneclearFeedServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_define.php
More file actions
32 lines (31 loc) · 1015 Bytes
/
_define.php
File metadata and controls
32 lines (31 loc) · 1015 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
28
29
30
31
32
<?php
/**
* @file
* @brief The plugin zoneclearFeedServer definition
* @ingroup zoneclearFeedServer
*
* @defgroup zoneclearFeedServer Plugin zoneclearFeedServer.
*
* Mix your blog with a feeds planet.
*
* @author Jean-Christian Denis (author)
* @author Pierre Van Glabeke
* @author BG
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
declare(strict_types=1);
$this->registerModule(
'Feeds server',
'Mix your blog with a feeds planet',
'Jean-Christian Denis, BG, Pierre Van Glabeke',
'2025.09.13',
[
'requires' => [['core', '2.36']],
'permissions' => 'My',
'type' => 'plugin',
'support' => 'https://github.com/JcDenis/' . $this->id . '/issues',
'details' => 'https://github.com/JcDenis/' . $this->id . '/',
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . $this->id . '/master/dcstore.xml',
'date' => '2025-09-13T19:54:15+00:00',
]
);