31 lines
977 B
PHP
31 lines
977 B
PHP
|
<?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',
|
||
|
'0.1',
|
||
|
[
|
||
|
'requires' => [['core', '2.33']],
|
||
|
'settings' => ['blog' => '#params.' . basename(__DIR__) . '_params'],
|
||
|
'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',
|
||
|
]
|
||
|
);
|