2021-09-08 22:53:13 +00:00
|
|
|
<?php
|
2021-09-08 23:02:10 +00:00
|
|
|
/**
|
2021-09-08 23:05:05 +00:00
|
|
|
* @brief noodles, a plugin for Dotclear 2
|
2022-11-17 20:00:42 +00:00
|
|
|
*
|
2021-09-08 23:02:10 +00:00
|
|
|
* @package Dotclear
|
2021-09-08 23:05:05 +00:00
|
|
|
* @subpackage Plugin
|
2022-11-17 20:00:42 +00:00
|
|
|
*
|
2021-09-08 23:05:05 +00:00
|
|
|
* @author Jean-Christian Denis and contributors
|
2022-11-17 20:00:42 +00:00
|
|
|
*
|
2021-09-08 23:02:10 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2021-09-08 22:53:13 +00:00
|
|
|
$this->registerModule(
|
2021-09-08 23:05:05 +00:00
|
|
|
'Noodles',
|
|
|
|
'Add users gravatars everywhere',
|
|
|
|
'Jean-Christian Denis and contributors',
|
2022-11-17 20:00:42 +00:00
|
|
|
'0.9',
|
2021-09-08 23:05:05 +00:00
|
|
|
[
|
2022-11-17 20:00:42 +00:00
|
|
|
'requires' => [['core', '2.24']],
|
2022-12-02 00:10:05 +00:00
|
|
|
'permissions' => dcCore::app()->auth->makePermissions([
|
|
|
|
dcAuth::PERMISSION_CONTENT_ADMIN,
|
|
|
|
]),
|
2021-10-30 21:03:10 +00:00
|
|
|
'type' => 'plugin',
|
|
|
|
'support' => 'https://github.com/JcDenis/noodles',
|
|
|
|
'details' => 'http://plugins.dotaddict.org/dc2/details/noodles',
|
|
|
|
'repository' => 'https://raw.githubusercontent.com/JcDenis/noodles/master/dcstore.xml',
|
2021-09-09 20:53:21 +00:00
|
|
|
'settings' => [
|
2022-11-17 20:00:42 +00:00
|
|
|
'self' => '',
|
|
|
|
],
|
2021-09-08 23:05:05 +00:00
|
|
|
]
|
2022-11-17 20:00:42 +00:00
|
|
|
);
|