| Server IP : 213.136.93.164 / Your IP : 216.73.216.20 Web Server : Apache System : Linux m14200.contabo.net 5.14.0-611.54.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed May 6 18:03:03 EDT 2026 x86_64 User : ki692510 ( 1047) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/ki692510/www/wp-content/plugins/image-optimization/classes/image/ |
Upload File : |
<?php
namespace ImageOptimization\Classes\Image;
use ImageOptimization\Classes\Basic_Enum;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
final class Image_Status extends Basic_Enum {
public const NOT_OPTIMIZED = 'not-optimized';
public const OPTIMIZED = 'optimized';
public const OPTIMIZATION_IN_PROGRESS = 'optimization-in-progress';
public const OPTIMIZATION_FAILED = 'optimization-failed';
public const RESTORING_IN_PROGRESS = 'restoring-in-progress';
public const RESTORING_FAILED = 'restoring-failed';
public const REOPTIMIZING_IN_PROGRESS = 'reoptimizing-in-progress';
public const REOPTIMIZING_FAILED = 'reoptimizing-failed';
}