-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_define.php
More file actions
36 lines (34 loc) · 985 Bytes
/
_define.php
File metadata and controls
36 lines (34 loc) · 985 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
33
34
35
36
<?php
# -- BEGIN LICENSE BLOCK ----------------------------------
#
# This file is part of dcLatestVersions, a plugin for Dotclear 2.
#
# Copyright (c) 2009-2015 Jean-Christian Denis and contributors
# Copyright (c) 2020 Nan'Art and contributors
#
# Licensed under the GPL version 2.0 license.
# A copy of this license is available in LICENSE file or at
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
#
# -- END LICENSE BLOCK ------------------------------------
if (!defined('DC_RC_PATH')) {
return null;
}
$this->registerModule(
/* Name */
"dcLatestVersions",
/* Description*/
"Show the latest available versions of Dotclear",
/* Author */
"Jean-Christian Denis, Pierre Van Glabeke",
/* Version */
'2020-08-11',
/* Properies */
array(
'permissions' => 'usage,contentadmin',
'type' => 'plugin',
'dc_min' => '2.16',
'support' => 'https://forum.dotclear.org/viewtopic.php?pid=344852',
'details' => 'https://github.com/nanart59/dcLatestVersions'
)
);