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',
|
2025-01-11 17:33:27 +00:00
|
|
|
'0.3',
|
2024-12-31 01:37:37 +00:00
|
|
|
[
|
|
|
|
'requires' => [['core', '2.33']],
|
2024-12-31 09:24:51 +00:00
|
|
|
'settings' => ['blog' => '#params.' . $this->id . '_params'],
|
2024-12-31 01:37:37 +00:00
|
|
|
'permissions' => 'My',
|
|
|
|
'type' => 'plugin',
|
2024-12-31 09:24:51 +00:00
|
|
|
'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
|
|
|
]
|
|
|
|
);
|