true, 'clear_on_focus' => true, 'invalid' => true, 'range' => true, ); $settings['max'] = false; return $settings; } /** * @return array */ protected function extra_field_opts() { return array( 'minnum' => 0, 'maxnum' => 9999999, 'step' => 'any', ); } /** * @since 3.01.03 * * @param array $args * @param string $input_html * * @return void */ protected function add_extra_html_atts( $args, &$input_html ) { $this->add_min_max( $args, $input_html ); } /** * @param array $args */ public function validate( $args ) { $errors = array(); $this->remove_commas_from_number( $args ); // Validate the number format. if ( ! is_numeric( $args['value'] ) && '' !== $args['value'] ) { $errors[ 'field' . $args['id'] ] = FrmFieldsHelper::get_error_msg( $this->field, 'invalid' ); } if ( $args['value'] === '' ) { return $errors; } $value = (float) $args['value']; $minnum = FrmField::get_option( $this->field, 'minnum' ); $maxnum = FrmField::get_option( $this->field, 'maxnum' ); if ( $minnum !== '' && $value < $minnum ) { $errors[ 'field' . $args['id'] ] = __( 'Please select a higher number', 'formidable' ); } elseif ( $maxnum !== '' && $value > $maxnum ) { $errors[ 'field' . $args['id'] ] = __( 'Please select a lower number', 'formidable' ); } $this->validate_step( $errors, $args ); return $errors; } /** * Validates the step setting. * * @since 5.2.06 * * @param array $errors Errors array. * @param array $args Validation args. * * @return void */ protected function validate_step( &$errors, $args ) { if ( isset( $errors[ 'field' . $args['id'] ] ) ) { // Don't need to check if value is invalid before. return; } $step = FrmField::get_option( $this->field, 'step' ); if ( ! $step || ! is_numeric( $step ) ) { return; } $result = $this->check_value_is_valid_with_step( $args['value'], $step ); if ( ! $result ) { return; } $errors[ 'field' . $args['id'] ] = sprintf( // Translators: %1$s: the first nearest value; %2$s: the second nearest value. __( 'Please enter a valid value. Two nearest valid values are %1$s and %2$s', 'formidable' ), is_numeric( $result[0] ) ? floatval( $result[0] ) : $result[0], is_numeric( $result[1] ) ? floatval( $result[1] ) : $result[1] ); } /** * Checks if value is valid with the given step. * * @since 5.2.07 * * @param numeric $value The value. * @param numeric $step The step. * * @return array|int Return `0` if valid. Otherwise, return an array contains two nearest values. */ protected function check_value_is_valid_with_step( $value, $step ) { // Count the number of decimals. $decimals = (int) max( FrmAppHelper::count_decimals( $value ), FrmAppHelper::count_decimals( $step ) ); // Convert value and step to int to prevent precision problem. $pow = 10 ** $decimals; $value = intval( $pow * $value ); $step = intval( $pow * $step ); $div = $value / $step; if ( is_int( $div ) ) { return 0; } $div = floor( $div ); return array( $div * $step / $pow, ( $div + 1 ) * $step / $pow ); } /** * IE fallback for number fields * Remove the comma when HTML5 isn't supported * * @since 3.0 * * @param array $args * * @return void */ private function remove_commas_from_number( &$args ) { if ( ! str_contains( $args['value'], ',' ) ) { return; } $args['value'] = str_replace( ',', '', $args['value'] ); FrmEntriesHelper::set_posted_value( $this->field, $args['value'], $args ); } /** * Force the value to be numeric before it's saved in the DB * * @param array|string $value * * @return float */ public function set_value_before_save( $value ) { return is_numeric( $value ) ? $value : (float) $value; } /** * @since 4.0.04 * * @param array|string $value * * @return void */ public function sanitize_value( &$value ) { FrmAppHelper::sanitize_value( 'sanitize_text_field', $value ); } }