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-04-26 21:16:50 +00:00
if (!defined('DC_RC_PATH') || is_null(dcCore::app()->auth)) {
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-05-13 08:10:07 +00:00
'0.7',
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' => '',
],
'support' => 'http://forum.dotclear.org/viewtopic.php?pid=333985',
'details' => 'https://plugins.dotaddict.org/dc2/details/' . basename(__DIR__),
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/dcstore.xml',
2023-01-02 00:00:05 +00:00
]
);