noodles/_define.php

31 lines
939 B
PHP
Raw Normal View History

2021-09-08 22:53:13 +00:00
<?php
/**
2023-10-12 19:33:20 +00:00
* @file
* @brief The plugin noodles definition
* @ingroup noodles
2022-11-17 20:00:42 +00:00
*
2023-10-12 19:33:20 +00:00
* @defgroup noodles Plugin noodles.
2022-11-17 20:00:42 +00:00
*
2023-10-12 19:33:20 +00:00
* Add users gravatars everywhere.
2022-11-17 20:00:42 +00:00
*
2023-10-12 19:33:20 +00:00
* @author Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2023-10-12 19:33:20 +00:00
declare(strict_types=1);
2023-05-04 20:51:48 +00:00
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',
2023-10-19 19:43:45 +00:00
'1.2.2',
2021-09-08 23:05:05 +00:00
[
2023-10-12 19:33:20 +00:00
'requires' => [['core', '2.28']],
'permissions' => 'My',
'settings' => ['self' => ''],
'type' => 'plugin',
'support' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/issues',
'details' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/src/branch/master/README.md',
'repository' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/raw/branch/master/dcstore.xml',
2021-09-08 23:05:05 +00:00
]
2022-11-17 20:00:42 +00:00
);