saba/_define.php

33 lines
874 B
PHP
Raw Normal View History

2021-08-21 20:12:28 +00:00
<?php
2021-09-02 20:53:22 +00:00
/**
* @brief saba, a plugin for Dotclear 2
2022-11-17 21:41:04 +00:00
*
2021-09-02 20:53:22 +00:00
* @package Dotclear
* @subpackage Plugin
2022-11-17 21:41:04 +00:00
*
2021-09-02 20:53:22 +00:00
* @author Jean-Christian Denis and Contributors
2022-11-17 21:41:04 +00:00
*
2021-09-02 20:53:22 +00:00
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2021-08-21 20:12:28 +00:00
if (!defined('DC_RC_PATH')) {
return null;
2021-08-21 20:12:28 +00:00
}
$this->registerModule(
'saba',
'Search across blog archive',
'Jean-Christian Denis and Contributors',
2022-11-20 20:57:33 +00:00
'2022.11.20',
[
2022-11-17 21:41:04 +00:00
'requires' => [['core', '2.24']],
2022-12-03 16:03:55 +00:00
'permissions' => dcCore::app()->auth->makePermissions([
dcAuth::PERMISSION_ADMIN,
]),
2022-11-17 21:41:04 +00:00
'type' => 'plugin',
'support' => 'https://github.com/JcDenis/saba',
'details' => 'https://plugins.dotaddict.org/dc2/details/saba',
'repository' => 'https://raw.githubusercontent.com/JcDenis/saba/master/dcstore.xml',
]
2022-11-17 21:41:04 +00:00
);