HEX
Server: Apache
System: Linux webd006.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: zwafgyp (177615)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/zwafgyp/dodolodge-net/wp-content/plugins/wp-migrate-db/class/Common/TPF/Manager.php
<?php

namespace DeliciousBrains\WPMDB\Common\TPF;

use DeliciousBrains\WPMDB\Common\Addon\AddonManagerInterface;
use DeliciousBrains\WPMDB\WPMDBDI;

class Manager implements AddonManagerInterface {
    public function register($licensed)
    {
        global $wpmdbpro_theme_plugin_files;

        if (!is_null($wpmdbpro_theme_plugin_files) ) {
            return $wpmdbpro_theme_plugin_files;
        }

        $container = WPMDBDI::getInstance();
        $theme_plugin = $container->get(ThemePluginFilesAddon::class);
        $theme_plugin->register();
        $theme_plugin->set_licensed($licensed);

        $container->get(ThemePluginFilesLocal::class)->register();

        add_filter('wpmdb_addon_registered_tpf', '__return_true');

        return $theme_plugin;
    }

    public function get_license_response_key()
    {
        return 'wp-migrate-db-pro-theme-plugin-files';
    }
}