You are here

slider-atleast.tpl.php in SEO Compliance Checker 6

Same filename and directory in other branches
  1. 6.2 theme/slider-atleast.tpl.php

Default theme implementation to display the slider-atleast form element

Available variables:

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

File

theme/slider-atleast.tpl.php
View 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 style="float:left">
  <div id='<?php

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

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

echo $element["#default_value"][0];
?>%</span></span>
<div style="clear:both;"></div>
<script type="text/javascript">
<!--
  $('#<?php

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

echo $element["#steps"];
?>,
    handles: [
      {
        start: <?php

echo $element["#default_value"][0];
?>,
        id: '<?php

echo $element["#id"];
?>_handle'
      }
    ]
  });
//-->
</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' value='<?php

echo $element["#default_value"][0];
?>' />