2015-04-22 14:37:03 +00:00
|
|
|
<?php
|
2022-12-16 21:27:11 +00:00
|
|
|
/**
|
|
|
|
* @brief bloganniv, a plugin for Dotclear 2
|
|
|
|
*
|
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
|
|
|
*
|
|
|
|
* @author Fran6t, Pierre Van Glabeke and Contributors
|
|
|
|
*
|
2023-04-10 22:22:25 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
2022-12-16 21:27:11 +00:00
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
|
|
|
if (!defined('DC_RC_PATH')) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2015-04-22 14:37:03 +00:00
|
|
|
$this->registerModule(
|
2022-12-16 21:27:11 +00:00
|
|
|
'Blog Anniv',
|
|
|
|
'Counting the number of days before and after a particular date',
|
|
|
|
'Fran6t, Pierre Van Glabeke and Contributors',
|
2023-04-10 22:22:25 +00:00
|
|
|
'2.0',
|
2022-12-16 21:27:11 +00:00
|
|
|
[
|
2023-04-10 22:22:25 +00:00
|
|
|
'requires' => [['core', '2.26']],
|
2022-12-16 21:27:11 +00:00
|
|
|
'permissions' => dcCore::app()->auth->makePermissions([
|
|
|
|
dcAuth::PERMISSION_ADMIN,
|
|
|
|
]),
|
|
|
|
'type' => 'plugin',
|
|
|
|
'support' => 'https://github.com/JcDenis/' . basename(__DIR__),
|
|
|
|
'details' => 'https://plugins.dotaddict.org/dc2/details/' . basename(__DIR__),
|
|
|
|
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/dcstore.xml',
|
|
|
|
]
|
|
|
|
);
|