activityReport/_define.php

32 lines
905 B
PHP
Raw Normal View History

<?php
2021-09-02 22:18:08 +00:00
/**
* @brief activityReport, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Jean-Christian Denis and contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
if (!defined('DC_RC_PATH')) {
return null;
}
$this->registerModule(
2021-09-02 22:18:08 +00:00
'Activity report',
'Receive your blog activity by email, feed, or on dashboard',
'Jean-Christian Denis and contributors',
2021-09-03 22:07:17 +00:00
'1.1.1',
2021-09-02 22:18:08 +00:00
[
'requires' => [['core', '2.19']],
'permissions' => 'usage,contentadmin,admin',
2021-09-02 22:18:08 +00:00
'priority' => -1000000,
'type' => 'plugin',
'support' => 'https://github.com/JcDenis/activityReport',
'details' => 'http://plugins.dotaddict.org/dc2/details/activityReport',
'repository' => 'https://raw.githubusercontent.com/JcDenis/activityReport/master/dcstore.xml'
]
);