FrontendSession/_define.php

31 lines
945 B
PHP
Raw Normal View History

2024-12-31 01:37:37 +00:00
<?php
/**
* @file
* @brief The plugin FrontendSession definition
* @ingroup FrontendSession
*
* @defgroup FrontendSession Plugin cinecturlink2.
*
* Allow session on frontend.
*
* @author Jean-Christian Paul Denis
* @copyright AGPL-3.0
*/
declare(strict_types=1);
$this->registerModule(
'Frontend sessions',
'Allow session on frontend.',
'Jean-Christian Paul Denis and Contributors',
2024-12-31 10:51:40 +00:00
'0.2',
2024-12-31 01:37:37 +00:00
[
'requires' => [['core', '2.33']],
'settings' => ['blog' => '#params.' . $this->id . '_params'],
2024-12-31 01:37:37 +00:00
'permissions' => 'My',
'type' => 'plugin',
'support' => 'https://git.dotclear.watch/JcDenis/' . $this->id . '/issues',
'details' => 'https://git.dotclear.watch/JcDenis/' . $this->id . '/src/branch/master/README.md',
'repository' => 'https://git.dotclear.watch/JcDenis/' . $this->id . '/raw/branch/master/dcstore.xml',
2024-12-31 01:37:37 +00:00
]
);