2021-10-29 16:14:51 +02:00
|
|
|
<?php echo template::formOpen('configAdvancedForm'); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::button('configBack', [
|
|
|
|
'class' => 'buttonGrey',
|
|
|
|
'href' => helper::baseUrl(false),
|
|
|
|
'ico' => 'home',
|
|
|
|
'value' => 'Accueil'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::button('configAdvancedHelp', [
|
|
|
|
'class' => 'buttonHelp',
|
|
|
|
'ico' => 'help',
|
|
|
|
'value' => 'Aide'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col2 offset6">
|
|
|
|
<?php echo template::submit('configAdvancedSubmit'); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- Aide à propos de la configuration du site, view advanced -->
|
|
|
|
<div class="helpDisplayContent">
|
2021-10-29 18:34:01 +02:00
|
|
|
<?php echo file_get_contents( 'core/module/config/view/safety/safety.help.html') ;?>
|
2021-10-29 16:14:51 +02:00
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<div class="row textAlignCenter">
|
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::button('configAdvancedButton', [
|
|
|
|
'href' => helper::baseUrl() . 'config/index',
|
2021-10-29 18:34:01 +02:00
|
|
|
'value' => 'Paramètres'
|
2021-10-29 16:14:51 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::button('configAdvancedButton', [
|
|
|
|
'href' => helper::baseUrl() . 'config/locale',
|
|
|
|
'value' => 'Localisation'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::button('configAdvancedButton', [
|
|
|
|
'href' => helper::baseUrl() . 'config/social',
|
|
|
|
'value' => 'Référencement'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::button('configAdvancedButton', [
|
|
|
|
'href' => helper::baseUrl() . 'config/safety',
|
|
|
|
'value' => 'Sécurité'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::button('configAdvancedButton', [
|
|
|
|
'href' => helper::baseUrl() . 'config/network',
|
|
|
|
'value' => 'Réseau'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
2021-10-29 18:34:01 +02:00
|
|
|
<div class="block">
|
|
|
|
<h4>Sécurité de la connexion</h4>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col3">
|
|
|
|
<?php echo template::select('configAdvancedConnectAttempt', $module::$connectAttempt , [
|
|
|
|
'label' => 'Connexions successives',
|
|
|
|
'selected' => $this->getData(['config', 'connect', 'attempt'])
|
|
|
|
]); ?>
|
2021-10-29 16:14:51 +02:00
|
|
|
</div>
|
2021-10-29 18:34:01 +02:00
|
|
|
<div class="col3">
|
|
|
|
<?php echo template::select('configAdvancedConnectTimeout', $module::$connectTimeout , [
|
|
|
|
'label' => 'Blocage après échecs',
|
|
|
|
'selected' => $this->getData(['config', 'connect', 'timeout'])
|
|
|
|
]); ?>
|
2021-10-29 16:14:51 +02:00
|
|
|
</div>
|
2021-10-29 18:34:01 +02:00
|
|
|
<div class="col3 verticalAlignBottom">
|
|
|
|
<label id="helpBlacklist">Liste noire :
|
|
|
|
<?php echo template::help(
|
|
|
|
'La liste noire énumère les tentatives de connexion à partir de comptes inexistants. Sont stockés : la date, l\'heure, le nom du compte et l\'IP.
|
|
|
|
Après le nombre de tentatives autorisées, l\'IP et le compte sont bloqués.');
|
|
|
|
?>
|
|
|
|
</label>
|
|
|
|
<?php echo template::button('configAdvancedConnectblacListDownload', [
|
|
|
|
'href' => helper::baseUrl() . 'config/blacklistDownload',
|
|
|
|
'value' => 'Télécharger la liste',
|
|
|
|
'ico' => 'download'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col3 verticalAlignBottom">
|
|
|
|
<?php echo template::button('configAdvancedConnectReset', [
|
|
|
|
'class' => 'buttonRed',
|
|
|
|
'href' => helper::baseUrl() . 'config/blacklistReset',
|
|
|
|
'value' => 'Réinitialiser la liste',
|
|
|
|
'ico' => 'cancel'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col6">
|
|
|
|
<?php echo template::checkbox('configAdvancedConnectCaptcha', true, 'Captcha à la connexion', [
|
|
|
|
'checked' => $this->getData(['config', 'connect','captcha'])
|
|
|
|
]); ?>
|
2021-10-29 16:14:51 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
2021-10-29 18:34:01 +02:00
|
|
|
<div class="block">
|
|
|
|
<h4>Journalisation</h4>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col3">
|
|
|
|
<?php echo template::checkbox('configAdvancedConnectLog', true, 'Activer la journalisation', [
|
|
|
|
'checked' => $this->getData(['config', 'connect', 'log'])
|
|
|
|
]); ?>
|
2021-10-29 16:14:51 +02:00
|
|
|
</div>
|
2021-10-29 18:34:01 +02:00
|
|
|
<div class="col3">
|
|
|
|
<?php echo template::select('configAdvancedConnectAnonymousIp', $module::$anonIP, [
|
|
|
|
'label' => 'Anonymat des adresses IP',
|
|
|
|
'selected' => $this->getData(['config', 'connect', 'anonymousIp']),
|
|
|
|
'help' => 'La réglementation française impose un anonymat de niveau 2'
|
2021-10-29 16:14:51 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
2021-10-29 18:34:01 +02:00
|
|
|
<div class="col3 verticalAlignBottom">
|
|
|
|
<?php echo template::button('configAdvancedLogDownload', [
|
|
|
|
'href' => helper::baseUrl() . 'config/logDownload',
|
|
|
|
'value' => 'Télécharger le journal',
|
|
|
|
'ico' => 'download'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col3 verticalAlignBottom">
|
|
|
|
<?php echo template::button('configAdvancedLogReset', [
|
|
|
|
'class' => 'buttonRed',
|
|
|
|
'href' => helper::baseUrl() . 'config/logReset',
|
|
|
|
'value' => 'Réinitialiser le journal',
|
|
|
|
'ico' => 'cancel'
|
|
|
|
]); ?>
|
2021-10-29 16:14:51 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo template::formClose(); ?>
|