2020-08-14 15:24:14 +02:00
|
|
|
<?php echo template::formOpen('searchForm'); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col10 offset1">
|
|
|
|
<div class="row">
|
2020-08-16 15:59:37 +02:00
|
|
|
<div class="col9 verticalAlignMiddle">
|
2020-08-14 15:24:14 +02:00
|
|
|
<?php echo template::text('searchMotphraseclef', [
|
2020-08-16 16:24:09 +02:00
|
|
|
'placeholder' => $this->getData(['module',$this->getUrl(0),'placeHolder']) ? $this->getData(['module',$this->getUrl(0),'placeHolder']) : $module::$defaultPlaceHolder,
|
|
|
|
'value' => $module::$motclef
|
2020-08-14 15:24:14 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
2020-08-16 15:59:37 +02:00
|
|
|
<div class="col3 verticalAlignMiddle">
|
2020-08-14 15:24:14 +02:00
|
|
|
<?php echo template::submit('pageEditSubmit', [
|
2020-08-16 16:24:09 +02:00
|
|
|
'value' => $this->getData(['module',$this->getUrl(0),'submitText']) ? $this->getData(['module',$this->getUrl(0),'submitText']) : $module::$defaultButtonText
|
2020-08-14 15:24:14 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<?php echo template::checkbox('searchMotentier', true, 'Mot entier uniquement', [
|
2020-08-19 19:02:37 +02:00
|
|
|
'checked' => $module::$motentier,
|
|
|
|
'help' => 'Pour rechercher une suite de mots-clés, les séparez par le symbole + plutôt que l\'espace.'
|
2020-08-14 15:24:14 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-08-19 18:16:49 +02:00
|
|
|
</div>
|
|
|
|
<?php if ( $module::$resultTitle ): ?>
|
|
|
|
<div class="col12">
|
|
|
|
<div class="block">
|
|
|
|
<?php echo '<h4>'.$module::$resultTitle . '</h4>'; ?>
|
|
|
|
<?php if ($module::$resultList )
|
|
|
|
echo '<p>'.$module::$resultList.'</p>';
|
|
|
|
?>
|
|
|
|
<?php if ($module::$resultError )
|
|
|
|
echo '<p>'.$module::$resultError.'</p>';
|
|
|
|
?>
|
|
|
|
</div>
|
2020-08-16 15:59:37 +02:00
|
|
|
</div>
|
2020-08-19 18:16:49 +02:00
|
|
|
<?php endif; ?>
|
2020-08-14 15:24:14 +02:00
|
|
|
<?php echo template::formClose(); ?>
|