slider-atleast.tpl.php in SEO Compliance Checker 6.2
Same filename and directory in other branches
Default theme implementation to display the slider-atleast form element
Available variables:
- $element: The element array containing #id, #name,...
File
theme/slider-atleast.tpl.phpView source
<?php
/**
* @file
* Default theme implementation to display the slider-atleast form element
*
* Available variables:
* - $element: The element array containing #id, #name,...
*/
?>
<div>
<strong><?php
echo $element["#title"];
?>:</strong>
</div>
<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;"><span id='<?php
echo $element["#id"];
?>_nr_0'><?php
echo $element["#default_value"][0];
?>%</span></span>
</div>
<div style="clear:both;"></div>
<script type="text/javascript">
<!--
$('#<?php
echo $element["#id"];
?>_slider').slider({
slide: changeHandle,
step: 100/<?php
echo $element["#steps"];
?>,
value: <?php
echo $element["#default_value"][0];
?>
});
//-->
</script>
<div class="description" style="margin-bottom:10px;"><?php
echo $element["#description"];
?></div>
<input type="hidden" name='<?php
echo $element["#name"];
?>' id='<?php
echo $element["#id"];
?>_value_0' value='<?php
echo $element["#default_value"][0];
?>' />