2021-08-16 20:36:26 +00:00
|
|
|
<?php
|
2021-09-02 21:01:31 +00:00
|
|
|
/**
|
|
|
|
* @brief simplyFavicon, a plugin for Dotclear 2
|
|
|
|
*
|
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
|
|
|
*
|
|
|
|
* @author Jean-Christian Denis
|
|
|
|
*
|
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2021-08-16 20:36:26 +00:00
|
|
|
|
2021-08-16 21:44:38 +00:00
|
|
|
if (!defined('DC_RC_PATH')){
|
2021-08-19 21:33:19 +00:00
|
|
|
return;
|
2021-08-16 21:44:38 +00:00
|
|
|
}
|
2021-09-02 21:01:31 +00:00
|
|
|
|
2021-08-16 20:36:26 +00:00
|
|
|
$this->registerModule(
|
2021-08-19 21:33:19 +00:00
|
|
|
"Simply favicon",
|
|
|
|
"Multi-agents favicon",
|
|
|
|
"Jean-Christian Denis",
|
2021-09-02 21:06:44 +00:00
|
|
|
'2021.09.02.1',
|
2021-09-02 21:01:31 +00:00
|
|
|
[
|
|
|
|
'requires' => [['core', '2.19']],
|
|
|
|
'permissions' => 'admin',
|
|
|
|
'type' => 'plugin',
|
|
|
|
'support' => 'https://github.com/JcDenis/simplyFavicon',
|
|
|
|
'details' => 'http://plugins.dotaddict.org/dc2/details/simplyFavicon',
|
|
|
|
'repository' => 'https://raw.githubusercontent.com/JcDenis/simplyFavicon/master/dcstore.xml'
|
|
|
|
]
|
2021-08-19 21:33:19 +00:00
|
|
|
);
|