ZwiiCMS/core/module/translate/view/index/index.php

36 lines
1.2 KiB
PHP
Raw Normal View History

2020-11-11 19:48:07 +01:00
<?php echo template::formOpen('translateForm'); ?>
<div class="row">
<div class="col2">
<?php echo template::button('translateFormBack', [
'class' => 'buttonGrey',
2020-11-14 14:52:18 +01:00
'href' => helper::baseUrl(),
2020-11-11 19:48:07 +01:00
'ico' => 'left',
'value' => 'Retour'
]); ?>
</div>
<div class="col2 offset8">
<?php echo template::submit('translateFormSubmit'); ?>
</div>
</div>
<div class="row">
<div class="col12">
<div class="block">
<h4>Configuration</h4>
<div class="row">
<div class="col6">
<?php echo template::checkbox('translateActive', true, 'Traduction automatique', [
2020-11-14 15:49:01 +01:00
'checked' => $this->getData(['translate', 'active']),
2020-11-14 16:26:27 +01:00
'help' => 'Traduction automatique du site hors connexion par le script Google Translate selon la langue du navigateur du visiteur.'
2020-11-11 19:48:07 +01:00
]); ?>
</div>
<div class="col6">
<?php echo template::checkbox('translateCredits', true, 'Afficher les crédits', [
2020-11-14 15:49:01 +01:00
'checked' => $this->getData(['translate', 'showCredits']),
'help' => 'Option vivement recommandée pour le respect du droit d\'auteur'
2020-11-11 19:48:07 +01:00
]); ?>
</div>
</div>
</div>
</div>
</div>
<?php echo template::formClose(); ?>