-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_define.php
More file actions
executable file
·35 lines (33 loc) · 931 Bytes
/
_define.php
File metadata and controls
executable file
·35 lines (33 loc) · 931 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
<?php
/**
* @brief YASH, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugins
*
* @author Pep
* @author Franck Paul
*
* @copyright Pep
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
$this->registerModule(
'YASH',
'Yet Another Syntax Highlighter',
'Pep and contributors',
'8.1',
[
'date' => '2026-02-23T09:13:21+0100',
'requires' => [['core', '2.37']],
'permissions' => 'My',
'priority' => 1010, // Must be higher than dcLegacyEditor/dcCKEditor priority (ie 1000)
'type' => 'plugin',
'settings' => [
'self' => '',
],
'details' => 'https://open-time.net/?q=yash',
'support' => 'https://github.com/franck-paul/yash',
'repository' => 'https://raw.githubusercontent.com/franck-paul/yash/main/dcstore.xml',
'license' => 'gpl2',
]
);