saba/_define.php

30 lines
880 B
PHP
Raw Normal View History

2021-08-21 20:12:28 +00:00
<?php
2021-09-02 20:53:22 +00:00
/**
2023-10-20 19:11:30 +00:00
* @file
* @brief The plugin saba definition
* @ingroup saba
2022-11-17 21:41:04 +00:00
*
2023-10-20 19:11:30 +00:00
* @defgroup saba Plugin saba.
2022-11-17 21:41:04 +00:00
*
2023-10-20 19:11:30 +00:00
* Search across blog archive.
2022-11-17 21:41:04 +00:00
*
2023-10-20 19:11:30 +00:00
* @author Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
2021-09-02 20:53:22 +00:00
*/
2023-10-20 19:11:30 +00:00
declare(strict_types=1);
2021-08-21 20:12:28 +00:00
$this->registerModule(
'saba',
'Search across blog archive',
'Jean-Christian Denis and Contributors',
2023-10-20 19:11:30 +00:00
'2023.10.20',
[
2023-10-20 19:11:30 +00:00
'requires' => [['core', '2.28']],
'permissions' => 'My',
'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',
]
2022-11-17 21:41:04 +00:00
);