2025-01-08 16:55:34 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief The plugin Proofreading definition
|
|
|
|
* @ingroup Proofreading
|
|
|
|
*
|
|
|
|
* @defgroup Proofreading Plugin Proofreading.
|
|
|
|
*
|
|
|
|
* Add status for your posts.
|
|
|
|
*
|
|
|
|
* @author Jean-Christian Denis (latest)
|
|
|
|
* @copyright GPL-3.0
|
|
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
$this->registerModule(
|
|
|
|
'Proofreading',
|
|
|
|
'Add proofreading statuses for your posts',
|
|
|
|
'Jean-Christian Denis and Contributors',
|
2025-01-08 16:56:32 +00:00
|
|
|
'0.1',
|
2025-01-08 16:55:34 +00:00
|
|
|
[
|
|
|
|
'requires' => [['core', '2.33']],
|
|
|
|
'permissions' => 'My',
|
|
|
|
'type' => 'plugin',
|
|
|
|
'support' => 'https://git.dotclear.watch/JcDenis/' . $this->id . '/issues',
|
|
|
|
'details' => 'https://git.dotclear.watch/JcDenis/' . $this->id . '/src/branch/master/README.md',
|
|
|
|
'repository' => 'https://git.dotclear.watch/JcDenis/' . $this->id . '/raw/branch/master/dcstore.xml',
|
|
|
|
]
|
|
|
|
);
|