noodles/_define.php

36 lines
1 KiB
PHP
Raw Normal View History

2021-09-08 22:53:13 +00:00
<?php
/**
2021-09-08 23:05:05 +00:00
* @brief noodles, a plugin for Dotclear 2
2022-11-17 20:00:42 +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
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2023-05-04 20:51:48 +00:00
if (!class_exists('dcCore') || is_null(dcCore::app()->auth)) {
return null;
}
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([
2023-05-04 20:51:48 +00:00
dcCore::app()->auth::PERMISSION_CONTENT_ADMIN,
2022-12-02 00:10:05 +00:00
]),
2023-05-04 20:51:48 +00:00
'type' => 'plugin',
'support' => 'https://github.com/JcDenis/' . basename(__DIR__),
'details' => 'http://plugins.dotaddict.org/dc2/details/' . basename(__DIR__),
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/dcstore.xml',
'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
);