<?php
wp_enqueue_script( 'jquery-ui-slider' );
wp_enqueue_style( 'jquery-ui' );
if ( is_array( $value ) )
$value = implode( ',', $value );
if ( strlen( $value ) < 1 )
$value = 0;
$values = explode( ',', $value );
$values = array(
pods_var( 0, $values, pods_var( $form_field_type . '_min', $options, 0, null, true ) ),
pods_var( 1, $values, pods_var( $form_field_type . '_max', $options, 100, null, true ) )
);
$values[ 0 ] = max( $values[ 0 ], pods_var( $form_field_type . '_min', $options, 0 ) );
$values[ 1 ] = min( $values[ 1 ], pods_var( $form_field_type . '_min', $options, 100 ) );
if ( 0 == pods_var( $form_field_type . '_range', $options, 0 ) )
$output_value = $value = $values[ 0 ];
else {
$value = implode( ',', $values );
$output_value = implode( ' - ', $values );
}
$attributes = array();
$attributes[ 'type' ] = 'hidden';
$attributes[ 'value' ] = $value;
$attributes = PodsForm::merge_attributes( $attributes, $name, $form_field_type, $options );
?>
<input<?php PodsForm::attributes( $attributes, $name, $form_field_type, $options ); ?> />
<div class="pods-slider-field">
<div id="<?php echo $attributes[ 'id' ]; ?>-range" class="pods-slider-range"></div>
<div id="<?php echo $attributes[ 'id' ]; ?>-amount-display" class="pods-slider-field-display">
<?php echo $output_value; ?>
</div>
</div>
<script>
jQuery( function ( $ ) {
$( "#<?php echo $attributes[ 'id' ]; ?>-range" ).slider( {
orientation : '<?php echo pods_var( $form_field_type . '_orientation', $options, 'horizontal' ); ?>',
min : <?php echo pods_var( $form_field_type . '_min', $options, 0 ); ?>,
max : <?php echo pods_var( $form_field_type . '_max', $options, 100 ); ?>,
step : <?php echo pods_var( $form_field_type . '_step', $options, 1 ); ?>,
<?php
if ( 1 == pods_var( $form_field_type . '_range', $options, 0 ) ) {
?>
range : true,
values : [
<?php echo $values[ 0 ]; ?>,
<?php echo $values[ 1 ]; ?>
],
slide : function ( event, ui ) {
$( "#<?php echo $attributes[ 'id' ]; ?>" ).val( ui.values[ 0 ] + ',' + ui.values[ 1 ] );
$( "#<?php echo $attributes[ 'id' ]; ?>-amount-display" ).html( ui.values[ 0 ] + ' - ' + ui.values[ 1 ] );
}
<?php
}
else {
?>
range : false,
value : <?php echo $value; ?>,
slide : function ( event, ui ) {
$( "#<?php echo $attributes[ 'id' ]; ?>" ).val( ui.value );
$( "#<?php echo $attributes[ 'id' ]; ?>-amount-display" ).html( ui.value );
}
<?php
}
?>
} );
} );
</script>