MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/cafsindia/www/wp-content/plugins/imageseo/src/Actions/Migration.php
<?php

namespace ImageSeoWP\Actions;

defined('ABSPATH') or die('Cheatin&#8217; uh?');

use ImageSeoWP\Async\QueryImagesNoAltBackgroundProcess;
use ImageSeoWP\Async\QueryTotalImagesBackgroundProcess;

class Migration
{
    public function __construct()
    {
        $this->processQueryImagesNoAlt = new QueryImagesNoAltBackgroundProcess();
        $this->processQueryTotalImages = new QueryTotalImagesBackgroundProcess();
    }

    public function hooks()
    {
        add_action('init', [$this, 'migrate']);
    }

    public function migrate()
    {
        if (!defined('IMAGESEO_VERSION')) {
            return;
        }

        $version = get_option('imageseo_version');

        if (!$version || version_compare($version, IMAGESEO_VERSION, '<')) { // Update version
            update_option('imageseo_version', IMAGESEO_VERSION);
        }

        if (!$version || version_compare($version, '1.2.4', '<')) {
            $this->processQueryImagesNoAlt->push_to_queue([
                'query_images_no_alt' => true,
            ]);
            $this->processQueryImagesNoAlt->save()->dispatch();

            $this->processQueryTotalImages->push_to_queue([
                'query_total_images' => true,
            ]);
            $this->processQueryTotalImages->save()->dispatch();
        }
    }
}