/home/techb158/public_html/wp-content/plugins/kirki/includes/FormValidator
Edit: /home/techb158/public_html/wp-content/plugins/kirki/includes/FormValidator/Validate.php (1687B)
= (int) $min_length;
}
public static function accepted_file_type( $file_type, $accepted_file_types ) {
// kirki supported media types for file input
$kirki_supported_media_types = KIRKI_SUPPORTED_MEDIA_TYPES_FOR_FILE_INPUT[ $accepted_file_types ];
// check if file type is in kirki supported media types
if ( ! empty( $kirki_supported_media_types ) && in_array( $file_type, $kirki_supported_media_types, true ) ) {
return true;
}
return false;
}
public static function max_file_size( $file_size, $max_file_size ) {
// convert file size to MB
$file_size = ! empty( $file_size ) ? (float) number_format( $file_size / 1048576, 2 ) : 2;
return $file_size <= (int) $max_file_size;
}
}