'px', 'mode' => 'padding', 'top' => true, 'bottom' => true, 'all' => false, 'left' => true, 'right' => true, 'units_extended' => false, 'display_units' => true, ); $this->field = wp_parse_args( $this->field, $defaults ); // Set default values. $defaults = array( 'top' => '', 'right' => '', 'bottom' => '', 'left' => '', 'units' => 'px', ); $this->value = wp_parse_args( $this->value, $defaults ); } /** * Field Render Function. * Takes the vars and outputs the HTML for the field in the settings * * @since ReduxFramework 1.0.0 */ public function render() { /* * Acceptable values checks. If the passed variable doesn't pass muster, we unset them * and reset them with default values to avoid errors. */ $unit_arr = Redux_Helpers::$array_units; $unit_check = $unit_arr; $unit_check[] = false; // If units field has a value but is not an acceptable value, unset the variable. if ( ! Redux_Helpers::array_in_array( $this->field['units'], $unit_check ) ) { $this->field['units'] = 'px'; } // If there is a default unit value but is not an accepted value, unset the variable. if ( ! Redux_Helpers::array_in_array( $this->value['units'], $unit_check ) ) { $this->value['units'] = 'px'; } if ( false === $this->field['units'] ) { $this->value['units'] = ''; } if ( ! in_array( $this->field['mode'], array( 'margin', 'padding' ), true ) ) { if ( 'absolute' === $this->field['mode'] ) { $this->field['mode'] = ''; } else { $this->field['mode'] = 'padding'; } } $value = array( 'top' => isset( $this->value[ $this->field['mode'] . '-top' ] ) ? filter_var( $this->value[ $this->field['mode'] . '-top' ], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ) : filter_var( $this->value['top'], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ), 'right' => isset( $this->value[ $this->field['mode'] . '-right' ] ) ? filter_var( $this->value[ $this->field['mode'] . '-right' ], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ) : filter_var( $this->value['right'], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ), 'bottom' => isset( $this->value[ $this->field['mode'] . '-bottom' ] ) ? filter_var( $this->value[ $this->field['mode'] . '-bottom' ], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ) : filter_var( $this->value['bottom'], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ), 'left' => isset( $this->value[ $this->field['mode'] . '-left' ] ) ? filter_var( $this->value[ $this->field['mode'] . '-left' ], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ) : filter_var( $this->value['left'], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ), ); // if field units has a value and is NOT an array, then evaluate as needed. if ( ! is_array( $this->field['units'] ) ) { // If units fields has a value and is not empty but units value does not then make units value the field value. if ( '' === $this->value['units'] && ( '' !== $this->field['units'] || false === $this->field['units'] ) ) { $this->value['units'] = $this->field['units']; // If units field does NOT have a value and units value does NOT have a value, set both to blank (default?). } elseif ( '' === $this->field['units'] && '' === $this->value['units'] ) { $this->field['units'] = 'px'; $this->value['units'] = 'px'; // If units field has NO value but units value does, then set unit field to value field. } elseif ( '' === $this->field['units'] && '' !== $this->value['units'] ) { $this->field['units'] = $this->value['units']; // if unit value is set and unit value doesn't equal unit field (coz who knows why) // then set unit value to unit field. } elseif ( '' !== $this->value['units'] && $this->field['units'] !== $this->value['units'] ) { $this->value['units'] = $this->field['units']; } // do stuff based on unit field NOT set as an array. // phpcs:ignore Generic.CodeAnalysis.EmptyStatement } elseif ( ! empty( $this->field['units'] ) && is_array( $this->field['units'] ) ) { // nothing to do here, but I'm leaving the construct just in case I have to debug this again. } if ( '' !== $this->field['units'] ) { $value['units'] = $this->value['units']; } $this->value = $value; if ( '' !== $this->field['mode'] ) { $this->field['mode'] = $this->field['mode'] . '-'; } if ( isset( $this->field['select2'] ) ) { $this->field['select2'] = wp_parse_args( $this->field['select2'], $this->select2_config ); } else { $this->field['select2'] = $this->select2_config; } $this->field['select2'] = Redux_Functions::sanitize_camel_case_array_keys( $this->field['select2'] ); $select2_data = Redux_Functions::create_data_string( $this->field['select2'] ); echo ''; if ( true === $this->field['all'] ) { $this->field['top'] = true; $this->field['right'] = true; $this->field['bottom'] = true; $this->field['left'] = true; $this->value['bottom'] = $this->value['top']; $this->value['left'] = $this->value['top']; $this->value['right'] = $this->value['top']; echo '