Put search field in separate template
This commit is contained in:
parent
49e2aaf44a
commit
75f34cae30
@ -61,43 +61,7 @@
|
|||||||
echo '<script src="' . $js . '"></script>';
|
echo '<script src="' . $js . '"></script>';
|
||||||
} ?>
|
} ?>
|
||||||
|
|
||||||
<?php if ($params['html']['search']) { ?>
|
<?php $this->insert('theme::partials/search_script', ['page' => $page, 'base_url' => $base_url]); ?>
|
||||||
<script>
|
|
||||||
<?php
|
|
||||||
$search_strings = [
|
|
||||||
"Search_one_result",
|
|
||||||
"Search_results",
|
|
||||||
"Search_no_results",
|
|
||||||
"Search_common_words_ignored",
|
|
||||||
"Search_too_short",
|
|
||||||
"Search_one_character_or_more",
|
|
||||||
"Search_should_be_x_or_more",
|
|
||||||
"Link_previous",
|
|
||||||
"Link_next",
|
|
||||||
];
|
|
||||||
$search_translations = [];
|
|
||||||
foreach($search_strings as $key) {
|
|
||||||
$search_translations[$key] = $this->translate($key);
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
|
|
||||||
window.searchLanguage = <?= json_encode($page['language']) ?>;
|
|
||||||
window.searchTranslation = <?= json_encode($search_translations) ?>;
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<!-- Tipue Search -->
|
|
||||||
<script type="text/javascript" src="<?php echo $base_url; ?>tipuesearch/jquery-1.11.3.min.js"></script>
|
|
||||||
<script type="text/javascript" src="<?php echo $base_url; ?>tipuesearch/tipuesearch.js"></script>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
window.onunload = function(){}; // force $(document).ready to be called on back/forward navigation in firefox
|
|
||||||
$(function() {
|
|
||||||
tipuesearch({
|
|
||||||
'base_url': '<?php echo $base_url?>'
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<?php } ?>
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
37
templates/partials/search_script.php
Normal file
37
templates/partials/search_script.php
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
<?php if ($params['html']['search']) { ?>
|
||||||
|
<script>
|
||||||
|
<?php
|
||||||
|
$search_strings = [
|
||||||
|
"Search_one_result",
|
||||||
|
"Search_results",
|
||||||
|
"Search_no_results",
|
||||||
|
"Search_common_words_ignored",
|
||||||
|
"Search_too_short",
|
||||||
|
"Search_one_character_or_more",
|
||||||
|
"Search_should_be_x_or_more",
|
||||||
|
"Link_previous",
|
||||||
|
"Link_next",
|
||||||
|
];
|
||||||
|
$search_translations = [];
|
||||||
|
foreach($search_strings as $key) {
|
||||||
|
$search_translations[$key] = $this->translate($key);
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
|
window.searchLanguage = <?= json_encode($page['language']) ?>;
|
||||||
|
window.searchTranslation = <?= json_encode($search_translations) ?>;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- Tipue Search -->
|
||||||
|
<script type="text/javascript" src="<?php echo $base_url; ?>tipuesearch/jquery-1.11.3.min.js"></script>
|
||||||
|
<script type="text/javascript" src="<?php echo $base_url; ?>tipuesearch/tipuesearch.js"></script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
window.onunload = function(){}; // force $(document).ready to be called on back/forward navigation in firefox
|
||||||
|
$(function() {
|
||||||
|
tipuesearch({
|
||||||
|
'base_url': '<?php echo $base_url?>'
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<?php } ?>
|
Loading…
Reference in New Issue
Block a user