File "optimization-error-message.php"
Full Path: /home/adniftyx/public_html/wp-content/plugins/image-optimization/modules/optimization/classes/optimization-error-message.php
File size: 1.42 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace ImageOptimization\Modules\Optimization\Classes;
use ImageOptimization\Classes\Image\Image_Optimization_Error_Type;
use TypeError;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Optimization_Error_Message {
public static function get_reoptimization_error_message( string $error_type ) {
if ( Image_Optimization_Error_Type::GENERIC === $error_type ) {
return esc_html__( 'Image reoptimizing failed', 'image-optimization' );
}
return self::get_optimization_error_message( $error_type );
}
public static function get_optimization_error_message( string $error_type ) {
if ( ! in_array( $error_type, Image_Optimization_Error_Type::get_values(), true ) ) {
throw new TypeError( "Error type $error_type is not a part of Image_Optimization_Error_Type values" );
}
$messages = [
Image_Optimization_Error_Type::FILE_ALREADY_EXISTS => esc_html__( 'File with this name already exists', 'image-optimization' ),
Image_Optimization_Error_Type::QUOTA_EXCEEDED => esc_html__( 'Plan quota reached', 'image-optimization' ),
Image_Optimization_Error_Type::GENERIC => esc_html__( 'Optimization error', 'image-optimization' ),
Image_Optimization_Error_Type::CONNECTION_ERROR => esc_html__( 'Connection error', 'image-optimization' ),
];
if ( isset( $messages[ $error_type ] ) ) {
return $messages[ $error_type ];
}
return $messages[ Image_Optimization_Error_Type::GENERIC ];
}
}