-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_define.php
More file actions
27 lines (25 loc) · 775 Bytes
/
Copy path_define.php
File metadata and controls
27 lines (25 loc) · 775 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
<?php
/*
* This file is part of relatedLinks plugin, for dotclear
*
* Copyright(c) Nicolas Roudaire https://www.nikrou.net/
* Licensed under the GPL version 2.0 license.
*
* For the full copyright and license information, please view the COPYING
* file that was distributed with this source code.
*/
use Dotclear\App;
use Dotclear\Core\Auth;
use Dotclear\Plugin\pages\Pages;
$this->registerModule(
"related Links", // Name
"Add related links from a post", // Description
"Nicolas Roudaire", // Author
'1.6.1', // Version
[
'permissions' => App::auth()->makePermissions([Auth::PERMISSION_CONTENT_ADMIN, Pages::PERMISSION_PAGES]),
'type' => 'plugin',
'dc_min' => '2.28',
'requires' => [['core', '2.28']],
]
);