2020-08-16 15:59:37 +02:00
|
|
|
<?php echo template::formOpen('searchConfig'); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::button('searchConfigBack', [
|
|
|
|
'class' => 'buttonGrey',
|
|
|
|
'href' => helper::baseUrl() . 'page/edit/' . $this->getUrl(0),
|
|
|
|
'ico' => 'left',
|
|
|
|
'value' => 'Retour'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col2 offset8">
|
|
|
|
<?php echo template::submit('searchConfigSubmit'); ?>
|
|
|
|
</div>
|
2020-08-16 10:43:09 +02:00
|
|
|
</div>
|
2020-08-16 15:59:37 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<div class="block">
|
|
|
|
<h4>Paramètres</h4>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col6">
|
|
|
|
<?php echo template::text('searchSubmitText', [
|
|
|
|
'label' => 'Texte du bouton de soumission',
|
|
|
|
'value' => $this->getData(['module', $this->getUrl(0), 'submitText']),
|
2020-08-16 16:24:09 +02:00
|
|
|
'placeholder' => $module::$defaultButtonText
|
2020-08-16 15:59:37 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col6">
|
|
|
|
<?php echo template::text('searchPlaceHolder', [
|
2020-08-16 16:24:09 +02:00
|
|
|
'label' => 'Aide dans la zone de saisie',
|
2020-08-16 15:59:37 +02:00
|
|
|
'value' => $this->getData(['module', $this->getUrl(0), 'placeHolder']),
|
2020-08-16 16:24:09 +02:00
|
|
|
'placeholder' => $module::$defaultPlaceHolder
|
2020-08-16 15:59:37 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-08-16 16:24:09 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<?php echo template::checkbox('searchResultHideContent', true, 'Résultats : masquer le contenu de la page', [
|
|
|
|
'checked' => $this->getData(['module', $this->getUrl(0), 'resultHideContent']),
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-08-16 15:59:37 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo template::formClose(); ?>
|
|
|
|
<div class="moduleVersion">Version n°
|
|
|
|
<?php echo $module::SEARCH_VERSION; ?>
|
2020-08-16 10:43:09 +02:00
|
|
|
</div>
|