-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_define.php
30 lines (29 loc) · 832 Bytes
/
_define.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
<?php
/**
* @brief cookiechoices, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugins
*
* @author Franck Paul and contributors
*
* @copyright Franck Paul carnet.franck.paul@gmail.com
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
$this->registerModule(
'cookiechoices',
'Cookie Consent System',
'Franck Paul',
'4.3',
[
'requires' => [['core', '2.28']],
'permissions' => 'My',
'type' => 'plugin',
'settings' => [
'blog' => '#params.cookiechoices',
],
'details' => 'https://open-time.net/?q=cookiechoices',
'support' => 'https://github.com/franck-paul/cookiechoices',
'repository' => 'https://raw.githubusercontent.com/franck-paul/cookiechoices/main/dcstore.xml',
]
);