36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* @brief comListe, a plugin for Dotclear 2
|
|
*
|
|
* @package Dotclear
|
|
* @subpackage Plugin
|
|
*
|
|
* @author Benoit de Marne, Pierre Van Glabeke and contributors
|
|
*
|
|
* @copyright Jean-Christian Denis
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
*/
|
|
if (!defined('DC_RC_PATH')) {
|
|
return null;
|
|
}
|
|
|
|
$this->registerModule(
|
|
'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',
|
|
'0.8',
|
|
[
|
|
'requires' => [['core', '2.26']],
|
|
'permissions' => dcCore::app()->auth->makePermissions([
|
|
dcCore::app()->auth::PERMISSION_ADMIN,
|
|
]),
|
|
'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',
|
|
]
|
|
);
|