File manager - Edit - C:/inetpub/vhosts/alsawaripharma.com/icte-dubai.com/wp-content/themes/uni-education/inc/customizer/validate.php
Back
<?php /** * Validation functions * * @package uni_education */ if ( ! function_exists( 'uni_education_validate_excerpt_count' ) ) : /** * Check if the input value is valid integer. * * @param WP_Customize_Control $control WP_Customize_Control instance. * @return string Whether the value is valid to the current preview. */ function uni_education_validate_excerpt_count( $validity, $value ){ $value = intval( $value ); if ( empty( $value ) || ! is_numeric( $value ) ) { $validity->add( 'required', esc_html__( 'You must supply a valid number.', 'uni-education' ) ); } elseif ( $value < 1 ) { $validity->add( 'min_slider', esc_html__( 'Minimum no of Excerpt Lenght is 1', 'uni-education' ) ); } elseif ( $value > 50 ) { $validity->add( 'max_slider', esc_html__( 'Maximum no of Excerpt Lenght is 50', 'uni-education' ) ); } return $validity; } endif;
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Generation time: 0.09 |
proxy
|
phpinfo
|
Settings