You are here

slider-range.tpl.php in Content Analysis 8

Same filename and directory in other branches
  1. 7 theme/slider-range.tpl.php

Default theme implementation to display the slider-range form element

Available variables:

  • $element: The element array containing #id, #name,...

File

theme/slider-range.tpl.php
View source
<?php

/**
 * @file
 * Default theme implementation to display the slider-range form element
 *
 * Available variables:
 * - $element: The element array containing #id, #name,...
 */
if (isset($element["#title"])) {
  ?>
    <div>
        <strong><?php

  echo $element["#title"];
  ?>:</strong>
    </div>
<?php

}
?>
<div id="<?php

echo $element["#id"];
?>" class="slider-widget-container">
    <div style="float:left">
        <div id='<?php

echo $element["#id"];
?>_slider'
             class='ui-slider-1'></div>
    </div>
    <span style="margin-left: 15px;"><?php

if (isset($element["#slider_suffix"])) {
  echo $element["#slider_suffix"];
}
?>
        <span id='<?php

echo $element["#id"];
?>_nr_0'><?php

echo $element["#default"][0] . $element["#value_suffix"];
?></span> - <span
                id='<?php

echo $element["#id"];
?>_nr_1'><?php

echo $element["#default"][1] . $element["#value_suffix"];
?></span></span>
</div>
<div style="clear:both;"></div>
<script type="text/javascript">
  <!--
  jQuery('#<?php

echo $element["#id"];
?>_slider').slider({
    slide: Sliders.changeHandle,
    step: <?php

echo $element["#step"];
?>,
    values: [
      <?php

echo $element["#default"][0];
?>,
      <?php

echo $element["#default"][1];
?>,
    ],
    max: <?php

echo $element["#max"];
?>,
    min: <?php

echo $element["#min"];
?>,
    range: true
  });
  //-->
</script>
<?php

if (isset($element["#description"])) {
  ?>
    <div class="description"
         style="margin-bottom:10px;"><?php

  echo $element["#description"];
  ?></div>
<?php

}
?>
<input type="hidden" name='<?php

echo $element["#name"];
?>[]'
       id='<?php

echo $element["#id"];
?>_value_0'
       value='<?php

echo $element["#default"][0];
?>'/>
<input type="hidden" name='<?php

echo $element["#name"];
?>[]'
       id='<?php

echo $element["#id"];
?>_value_1'
       value='<?php

echo $element["#default"][1];
?>'/>