40 lines
1.8 KiB
PHP
Executable File
40 lines
1.8 KiB
PHP
Executable File
<?php echo template::formOpen('searchForm'); ?>
|
|
<div class="row">
|
|
<div class="col10 offset1">
|
|
<div class="row">
|
|
<div class="col9 verticalAlignMiddle">
|
|
<?php echo template::text('searchMotphraseclef', [
|
|
'placeholder' => $this->getData(['module', $this->getUrl(0), 'placeHolder']) ? $this->getData(['module', $this->getUrl(0), 'placeHolder']) : 'Un plusieurs mots-clés séparés par un espace ou par +',
|
|
'value' => $module::$motclef
|
|
]); ?>
|
|
</div>
|
|
<div class="col3 verticalAlignMiddle">
|
|
<?php echo template::submit('pageEditSubmit', [
|
|
'value' => $this->getData(['module', $this->getUrl(0), 'submitText']) ? $this->getData(['module', $this->getUrl(0), 'submitText']) : 'Rechercher'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col12">
|
|
<?php echo template::checkbox('searchMotentier', true, 'Mots clés approchants', [
|
|
'checked' => $module::$motentier,
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</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>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php echo template::formClose(); ?>
|