2021-05-08 14:09:02 +02:00
|
|
|
<?php
|
2021-05-08 11:44:47 +02:00
|
|
|
$action = $action ?? $this->url(null, [], true);
|
|
|
|
$fulltextSearch = $fulltextSearch ?? $this->params()->fromQuery('fulltext_search');
|
|
|
|
?>
|
2021-05-08 18:27:48 +02:00
|
|
|
|
2021-05-08 11:44:47 +02:00
|
|
|
<form action="<?php echo $this->escapeHtml($action); ?>" class="sitewide-search-form">
|
|
|
|
<input type="text" name="fulltext_search" value="<?php echo $this->escapeHtml($fulltextSearch); ?>">
|
|
|
|
<input type="submit" value="<?php echo $this->escapeHtml($this->translate('Search')); ?>">
|
|
|
|
</form>
|