2015-05-30 15:21:33 +00:00
|
|
|
<?php
|
2023-01-02 00:00:05 +00:00
|
|
|
/**
|
2023-10-15 19:42:44 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin comListe definition
|
|
|
|
* @ingroup comListe
|
2023-01-02 00:00:05 +00:00
|
|
|
*
|
2023-10-15 19:42:44 +00:00
|
|
|
* @defgroup comListe Plugin comListe.
|
2023-01-02 00:00:05 +00:00
|
|
|
*
|
2023-10-15 19:42:44 +00:00
|
|
|
* Display a list of all comments and trackbacks of a blog in a public page.
|
2023-01-02 00:00:05 +00:00
|
|
|
*
|
2023-10-15 19:42:44 +00:00
|
|
|
* @author Benoit de Marne (author)
|
|
|
|
* @author Jean-Christian Denis (latest)
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2023-01-02 00:00:05 +00:00
|
|
|
*/
|
2023-10-15 19:42:44 +00:00
|
|
|
declare(strict_types=1);
|
2015-05-30 15:21:33 +00:00
|
|
|
|
|
|
|
$this->registerModule(
|
2023-01-02 00:00:05 +00:00
|
|
|
'Comments list',
|
|
|
|
'Display a list of all comments and trackbacks of a blog in a public page',
|
|
|
|
'Benoit de Marne, Pierre Van Glabeke and contributors',
|
2023-10-24 22:51:58 +00:00
|
|
|
'0.9.1',
|
2023-01-02 00:00:05 +00:00
|
|
|
[
|
2023-10-15 19:42:44 +00:00
|
|
|
'requires' => [['core', '2.28']],
|
|
|
|
'permissions' => 'My',
|
|
|
|
'type' => 'plugin',
|
|
|
|
'settings' => ['self' => ''],
|
|
|
|
'support' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/issues',
|
|
|
|
'details' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/src/branch/master/README.md',
|
|
|
|
'repository' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/raw/branch/master/dcstore.xml',
|
2023-01-02 00:00:05 +00:00
|
|
|
]
|
|
|
|
);
|