2015-04-22 21:44:23 +00:00
|
|
|
<?php
|
2021-09-02 19:25:11 +00:00
|
|
|
/**
|
|
|
|
* @brief lastBlogUpdate, a plugin for Dotclear 2
|
2022-11-15 21:39:21 +00:00
|
|
|
*
|
2021-09-02 19:25:11 +00:00
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
2022-11-15 21:39:21 +00:00
|
|
|
*
|
2021-09-02 19:25:11 +00:00
|
|
|
* @author Jean-Christian Denis, Pierre Van Glabeke
|
2022-11-15 21:39:21 +00:00
|
|
|
*
|
2021-09-02 19:25:11 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2015-04-22 21:44:23 +00:00
|
|
|
if (!defined('DC_RC_PATH')) {
|
2021-08-27 19:29:07 +00:00
|
|
|
return null;
|
2015-04-22 21:44:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->registerModule(
|
2021-09-16 22:20:50 +00:00
|
|
|
'Last blog update',
|
2021-08-27 19:29:07 +00:00
|
|
|
'Show the dates of last updates of your blog in a widget',
|
|
|
|
'Jean-Christian Denis, Pierre Van Glabeke',
|
2023-04-22 11:53:04 +00:00
|
|
|
'2023.04.22',
|
2021-08-27 19:29:07 +00:00
|
|
|
[
|
2023-03-25 20:37:06 +00:00
|
|
|
'requires' => [['core', '2.26']],
|
2022-11-15 21:39:21 +00:00
|
|
|
'permissions' => dcCore::app()->auth->makePermissions([
|
|
|
|
dcAuth::PERMISSION_USAGE,
|
|
|
|
dcAuth::PERMISSION_CONTENT_ADMIN,
|
|
|
|
]),
|
|
|
|
'type' => 'plugin',
|
|
|
|
'support' => 'http://forum.dotclear.org/viewtopic.php?pid=332950#p332950',
|
|
|
|
'details' => 'http://plugins.dotaddict.org/dc2/details/lastBlogUpdate',
|
|
|
|
'repository' => 'https://raw.githubusercontent.com/JcDenis/lastBlogUpdate/master/dcstore.xml',
|
2021-08-27 19:29:07 +00:00
|
|
|
]
|
2022-11-15 21:39:21 +00:00
|
|
|
);
|