comListe/_define.php

36 lines
1.1 KiB
PHP
Raw Normal View History

2015-05-30 15:21:33 +00:00
<?php
2023-01-02 00:00:05 +00:00
/**
* @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
*/
2023-08-06 19:21:11 +00:00
if (!defined('DC_RC_PATH')) {
2023-01-02 00:00:05 +00:00
return null;
}
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-08-06 19:21:11 +00:00
'0.8',
2023-01-02 00:00:05 +00:00
[
2023-04-26 21:16:50 +00:00
'requires' => [['core', '2.26']],
2023-01-02 00:00:05 +00:00
'permissions' => dcCore::app()->auth->makePermissions([
2023-04-26 21:16:50 +00:00
dcCore::app()->auth::PERMISSION_ADMIN,
2023-01-02 00:00:05 +00:00
]),
2023-04-26 21:16:50 +00:00
'type' => 'plugin',
'settings' => [
'self' => '',
],
2023-08-06 19:21:11 +00:00
'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
]
);