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

45 lines
1.3 KiB
PHP
Raw Normal View History

<?php echo template::formOpen('i18nIndex'); ?>
<div class="row">
<div class="col2">
2019-10-22 08:42:11 +02:00
<?php echo template::button('i18nBack', [
'class' => 'buttonGrey',
2019-10-05 13:14:41 +02:00
'href' => helper::baseUrl(false),
'ico' => 'home',
'value' => 'Accueil'
]); ?>
</div>
2019-10-22 08:42:11 +02:00
<div class="col2 offset6">
<?php echo template::button('i18nAddButton', [
'href' => helper::baseUrl() . 'i18n/add',
'value' => 'Ajouter'
]); ?>
</div>
<div class="col2">
<?php echo template::submit('i18nSubmit'); ?>
</div>
</div>
2019-10-22 08:42:11 +02:00
<div class="row">
<div class="col12">
<div class="block">
<h4>Supprimer une localisation</h4>
<div class="row">
<?php echo template::select('i18nLanguageRemove', $this->i18nInstalled(true, true), [
'label' => 'Localisations installées',
'help' => 'La suppression d\'une langue entraîne l\'effacement des pages et des modules',
'selected' => -1
]); ?>
2019-08-23 09:46:11 +02:00
</div>
</div>
</div>
</div>
<!--
<div class="row">
<div class="col4">
<?php echo template::select('i18nHomePageId', helper::arrayCollumn($this->getData(['page']), 'title', 'SORT_ASC'), [
'label' => 'Page d\'accueil',
//'selected' => $this->getData(['config', 'homePageId'])
]); ?>
</div>
</div>
-->
<?php echo template::formClose(); ?>