Skip to content
Snippets Groups Projects
Commit 1527ebd9 authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Added missing sliders to EDS advanced search (Bootstrap theme).

parent 39da299a
No related merge requests found
<div class="clearfix"></div>
<div class="row">
<? if (!empty($this->expanderList)): ?>
<fieldset class="col-sm-4">
......@@ -73,4 +74,57 @@
<? endforeach; ?>
</fieldset>
<? endif; ?>
<? if (isset($this->dateRangeLimit)): ?>
<fieldset class="col-sm-4">
<legend><?=$this->transEsc('adv_search_year')?></legend>
<input type="hidden" name="daterange[]" value="PublicationDate"/>
<div class="row">
<div class="col-sm-6">
<label for="PublicationDatefrom"><?=$this->transEsc('date_from')?>:</label>
<input type="text" name="PublicationDatefrom" id="PublicationDatefrom" value="<?=$this->escapeHtmlAttr($this->dateRangeLimit[0])?>" class="form-control"/>
</div>
<div class="col-sm-6">
<label for="PublicationDateto"><?=$this->transEsc('date_to')?>:</label>
<input type="text" name="PublicationDateto" id="PublicationDateto" value="<?=$this->escapeHtmlAttr($this->dateRangeLimit[1])?>" class="form-control"/>
</div>
</div>
<div class="slider-container">
<input type="text" id="PublicationDateSlider">
</div>
<?
$this->headScript()->appendFile('vendor/bootstrap-slider.js');
$min = !empty($current['values'][0]) ? min($current['values'][0], 1400) : 1400;
$future = date('Y', time()+31536000);
$max = !empty($current['values'][1]) ? max($future, $current['values'][1]) : $future;
$low = !empty($current['values'][0]) ? $current['values'][0] : $min;
$high = !empty($current['values'][1]) ? $current['values'][1] : $max;
$min = intval($min);
$max = intval($max);
$low = intval($low);
$high = intval($high);
$init = !empty($current['values'][0]) ? 'fillTexts()' : '';
$script = <<<JS
$(document).ready(function() {
var fillTexts = function() {
var v = PublicationDateSlider.getValue();
$('#PublicationDatefrom').val(v[0]);
$('#PublicationDateto').val(v[1]);
};
var PublicationDateSlider = $('#PublicationDateSlider')
.slider({
'min':{$min},
'max':{$max},
'handle':"square",
'tooltip':"hide",
'value':[{$low},{$high}]
})
.on('slide', fillTexts)
.data('slider');
{$init}
});
JS;
?>
<?=$this->inlineScript(\Zend\View\Helper\HeadScript::SCRIPT, $script, 'SET'); ?>
</fieldset>
<? endif; ?>
</div>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment