41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<?php echo template::formOpen('redirectionConfig'); ?>
|
|
<div class="row">
|
|
<div class="col2">
|
|
<?php echo template::button('redirectionConfigBack', [
|
|
'class' => 'buttonGrey',
|
|
'href' => helper::baseUrl() . 'page/edit/' . $this->getUrl(0),
|
|
'ico' => 'left',
|
|
'value' => 'Retour'
|
|
]); ?>
|
|
</div>
|
|
<div class="col2 offset8">
|
|
<?php echo template::submit('redirectionConfigSubmit'); ?>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col6">
|
|
<div class="block">
|
|
<h4>Redirection</h4>
|
|
<?php echo template::text('redirectionConfigUrl', [
|
|
'label' => 'Lien de redirection',
|
|
'placeholder' => 'http://',
|
|
'value' => $this->getData(['module', $this->getUrl(0), 'url']),
|
|
'help' => 'Le lien de redirection peut contenir une URL standard, ou pointer vers l\'ancre d\'une page du site <em>(/page#ancre)</em> ; <em>(/?page#ancre)</em>'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<div class="col6">
|
|
<div class="block">
|
|
<h4>Statistiques</h4>
|
|
<?php echo template::text('redirectionConfigCount', [
|
|
'disabled' => true,
|
|
'label' => 'Nombre de redirection',
|
|
'value' => helper::filter($this->getData(['module', $this->getUrl(0), 'count']), helper::FILTER_INT)
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php echo template::formClose(); ?>
|
|
<div class="moduleVersion">Version n°
|
|
<?php echo $module::REDIRECTION_VERSION; ?>
|
|
</div>
|