-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_define.php
More file actions
31 lines (30 loc) · 1023 Bytes
/
_define.php
File metadata and controls
31 lines (30 loc) · 1023 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
<?php
/**
* @file
* @brief The plugin activityReport definition
* @ingroup activityReport
*
* @defgroup activityReport Plugin activityReport.
*
* Log and receive your blog activity by email, feed, or on dashboard.
*
* @author Jean-Christian Denis (author)
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
declare(strict_types=1);
$this->registerModule(
'Activity log',
'Log and receive your blog activity by email, feed, or on dashboard',
'Jean-Christian Denis and contributors',
'3.4.2',
[
'requires' => [['core', '2.28']],
'permissions' => 'My',
'priority' => 2,
'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-03-02T08:47:05+00:00',
]
);