2021-08-25 22:06:10 +00:00
|
|
|
<?php
|
2021-09-16 22:50:25 +00:00
|
|
|
/**
|
|
|
|
* @brief lastpostsExtend, a plugin for Dotclear 2
|
2022-11-20 20:23:22 +00:00
|
|
|
*
|
2021-09-16 22:50:25 +00:00
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
2022-11-20 20:23:22 +00:00
|
|
|
*
|
2021-09-16 22:50:25 +00:00
|
|
|
* @author Jean-Christian Denis and contributors
|
2022-11-20 20:23:22 +00:00
|
|
|
*
|
2021-09-16 22:50:25 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2021-08-25 22:06:10 +00:00
|
|
|
if (!defined('DC_RC_PATH')) {
|
2021-08-25 22:51:55 +00:00
|
|
|
return null;
|
2021-08-25 22:06:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->registerModule(
|
2021-08-25 22:51:55 +00:00
|
|
|
'Last entries (Extended)',
|
|
|
|
'Extended list of entries',
|
|
|
|
'Jean-Christian Denis and contributors',
|
2023-04-22 12:17:44 +00:00
|
|
|
'2023.04.22',
|
2021-08-25 22:51:55 +00:00
|
|
|
[
|
2023-03-25 20:20:51 +00:00
|
|
|
'requires' => [['core', '2.26']],
|
2022-12-08 21:24:27 +00:00
|
|
|
'permissions' => dcCore::app()->auth->makePermissions([
|
|
|
|
dcAuth::PERMISSION_ADMIN,
|
|
|
|
]),
|
2023-03-25 20:20:51 +00:00
|
|
|
'type' => 'plugin',
|
|
|
|
'support' => 'https://github.com/JcDenis/' . basename(__DIR__),
|
|
|
|
'details' => 'http://plugins.dotaddict.org/dc2/details/' . basename(__DIR__),
|
|
|
|
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/repository.xml',
|
2021-08-25 22:51:55 +00:00
|
|
|
]
|
2022-11-20 20:23:22 +00:00
|
|
|
);
|