sections, $parent->args ); $this->parent = $parent; $this->field = $field; $this->value = $value; } /** * * Clean the field data to the fields defaults given the parameters. * * @since Redux_Framework 3.1.1 * */ function clean() { if( empty( $this->field['min'] ) ) { $this->field['min'] = 0; } else { $this->field['min'] = intval( $this->field['min'] ); } if( empty( $this->field['max'] ) ) { $this->field['max'] = intval( $this->field['min'] ) + 1; } else { $this->field['max'] = intval( $this->field['max'] ); } if( empty( $this->field['step'] ) || $this->field['step'] > $this->field['max'] ) { $this->field['step'] = 1; } else { $this->field['step'] = intval( $this->field['step'] ); } if ( empty( $this->value ) && !empty( $this->field['default'] ) && intval( $this->field['min'] ) >= 1 ) { $this->value = intval( $this->field['default'] ); } if ( empty( $this->value ) && intval( $this->field['min'] ) >= 1 ) { $this->value = intval( $this->field['min'] ); } if ( empty( $this->value ) ) { $this->value = 0; } // Extra Validation if ($this->value < $this->field['min']) { $this->value = intval( $this->field['min'] ); } else if ($this->value > $this->field['max']) { $this->value = intval( $this->field['max'] ); } } /** * Enqueue Function. * * If this field requires any scripts, or css define this function and register/enqueue the scripts/css * * @since ReduxFramework 0.0.4 */ function enqueue(){ wp_enqueue_script( 'redux-field-media-js', ReduxFramework::$_url . 'inc/fields/media/field_media.js', array( 'jquery', 'wp-color-picker' ), time(), true ); wp_enqueue_style( 'redux-field-media-css', ReduxFramework::$_url . 'inc/fields/media/field_media.css', time(), true ); wp_enqueue_script( 'redux-field-slider-js', ReduxFramework::$_url.'inc/fields/slider/field_slider.js', array('jquery', 'jquery-ui-core', 'jquery-ui-dialog'), time(), true ); wp_enqueue_style( 'redux-field-slider-css', ReduxFramework::$_url.'inc/fields/slider/field_slider.css', time(), true ); }//function /** * * Functions to pass data from the PHP to the JS at render time. * * @return array Params to be saved as a javascript object accessable to the UI. * * @since Redux_Framework 3.1.1 * */ function localize($field, $value = "") { $params = array( 'id' => '', 'min' => '', 'max' => '', 'step' => '', 'val' => null, 'default' => '', ); $params = wp_parse_args( $field, $params ); if ( empty( $value ) ) { $value = $this->value; } $params['val'] = $value; return $params; } /** * Field Render Function. * * Takes the vars and outputs the HTML for the field in the settings * * @since ReduxFramework 0.0.4 */ function render(){ // Don't allow input edit if there's a step $readonly = ""; if ( isset($this->field['edit']) && $this->field['edit'] == false ) { $readonly = ' readonly="readonly"'; } echo ''; echo '
'; }//function }//class