simplyFavicon/_define.php

44 lines
1.2 KiB
PHP
Raw Normal View History

2021-08-16 20:36:26 +00:00
<?php
2021-09-02 21:01:31 +00:00
/**
* @brief simplyFavicon, a plugin for Dotclear 2
2021-11-06 01:23:40 +00:00
*
2021-09-02 21:01:31 +00:00
* @package Dotclear
* @subpackage Plugin
2021-11-06 01:23:40 +00:00
*
2021-09-02 21:01:31 +00:00
* @author Jean-Christian Denis
2021-11-06 01:23:40 +00:00
*
2021-09-02 21:01:31 +00:00
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2023-10-13 21:45:58 +00:00
/*
* @file
* @brief The simplyFavicon pacKman definition
* @ingroup simplyFavicon
*
* @defgroup simplyFavicon Plugin simplyFavicon.
*
* Multi-agents favicon.
*
* @author Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
declare(strict_types=1);
2021-09-02 21:01:31 +00:00
2021-08-16 20:36:26 +00:00
$this->registerModule(
2021-11-06 01:23:40 +00:00
'Simply favicon',
'Multi-agents favicon',
'Jean-Christian Denis',
2023-08-13 10:41:00 +00:00
'2023.08.13',
2021-09-02 21:01:31 +00:00
[
2023-10-13 21:45:58 +00:00
'requires' => [['core', '2.28']],
'permissions' => 'My',
'settings' => [
2023-08-13 10:41:00 +00:00
'blog' => '#params.' . basename(__DIR__) . '_params',
2022-11-14 22:02:42 +00:00
],
2023-08-13 10:41:00 +00:00
'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-02 21:01:31 +00:00
]
2021-11-06 01:23:40 +00:00
);