| 1 |
<?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly. |
| 2 |
/** |
| 3 |
* |
| 4 |
* Field: spinner |
| 5 |
* |
| 6 |
* @since 1.0.0 |
| 7 |
* @version 1.0.0 |
| 8 |
* |
| 9 |
*/ |
| 10 |
if ( ! class_exists( 'CSF_Field_spinner' ) ) { |
| 11 |
class CSF_Field_spinner extends CSF_Fields { |
| 12 |
|
| 13 |
public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) { |
| 14 |
parent::__construct( $field, $value, $unique, $where, $parent ); |
| 15 |
} |
| 16 |
|
| 17 |
public function render() { |
| 18 |
|
| 19 |
$args = wp_parse_args( $this->field, array( |
| 20 |
'max' => 100, |
| 21 |
'min' => 0, |
| 22 |
'step' => 1, |
| 23 |
'unit' => '', |
| 24 |
) ); |
| 25 |
|
| 26 |
echo $this->field_before(); |
| 27 |
|
| 28 |
echo '<div class="csf--spin"><input type="number" name="'. esc_attr( $this->field_name() ) .'" value="'. esc_attr( $this->value ) .'"'. $this->field_attributes( array( 'class' => 'csf-input-number' ) ) .' data-min="'. esc_attr( $args['min'] ) .'" data-max="'. esc_attr( $args['max'] ) .'" data-step="'. esc_attr( $args['step'] ) .'" data-unit="'. esc_attr( $args['unit'] ) .'" step="any" /></div>'; |
| 29 |
|
| 30 |
echo $this->field_after(); |
| 31 |
|
| 32 |
} |
| 33 |
|
| 34 |
public function enqueue() { |
| 35 |
|
| 36 |
if ( ! wp_script_is( 'jquery-ui-spinner' ) ) { |
| 37 |
wp_enqueue_script( 'jquery-ui-spinner' ); |
| 38 |
} |
| 39 |
|
| 40 |
} |
| 41 |
|
| 42 |
public function output() { |
| 43 |
|
| 44 |
$output = ''; |
| 45 |
$elements = ( is_array( $this->field['output'] ) ) ? $this->field['output'] : array_filter( (array) $this->field['output'] ); |
| 46 |
$important = ( ! empty( $this->field['output_important'] ) ) ? '!important' : ''; |
| 47 |
$mode = ( ! empty( $this->field['output_mode'] ) ) ? $this->field['output_mode'] : 'width'; |
| 48 |
$unit = ( ! empty( $this->field['unit'] ) ) ? $this->field['unit'] : 'px'; |
| 49 |
|
| 50 |
if ( ! empty( $elements ) && isset( $this->value ) && $this->value !== '' ) { |
| 51 |
foreach ( $elements as $key_property => $element ) { |
| 52 |
if ( is_numeric( $key_property ) ) { |
| 53 |
if ( $mode ) { |
| 54 |
$output = implode( ',', $elements ) .'{'. $mode .':'. $this->value . $unit . $important .';}'; |
| 55 |
} |
| 56 |
break; |
| 57 |
} else { |
| 58 |
$output .= $element .'{'. $key_property .':'. $this->value . $unit . $important .'}'; |
| 59 |
} |
| 60 |
} |
| 61 |
} |
| 62 |
|
| 63 |
$this->parent->output_css .= $output; |
| 64 |
|
| 65 |
return $output; |
| 66 |
|
| 67 |
} |
| 68 |
|
| 69 |
} |
| 70 |
} |
| 71 |
|