-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_define.php
More file actions
30 lines (28 loc) · 839 Bytes
/
Copy path_define.php
File metadata and controls
30 lines (28 loc) · 839 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
<?php
/**
* @brief dmHelper, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugins
*
* @author Franck Paul and contributors
*
* @copyright Franck Paul contact@open-time.net
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
$this->registerModule(
'Dashboard Module Helper Library',
'Helper library for Dashboard Modules',
'Franck Paul',
'6.1',
[
'date' => '2025-09-11T10:01:08+0200',
'requires' => [['core', '2.36']],
'permissions' => 'My',
'type' => 'plugin',
'details' => 'https://open-time.net/?q=dmHelper',
'support' => 'https://github.com/franck-paul/dmHelper',
'repository' => 'https://raw.githubusercontent.com/franck-paul/dmHelper/main/dcstore.xml',
'license' => 'gpl2',
]
);