File: /home/pewnabryka.pl/public_html/wp-content/plugins/duplicator-pro/src/MuPlugin/MuGenerator.php
<?php
/**
 * @package   Duplicator
 * @copyright (c) 2022, Snap Creek LLC
 */
namespace Duplicator\MuPlugin;
/**
 * Mu plugin generator
 */
class MuGenerator
{
    const NAME = 'duplicator-mu-plugin.php';
    /**
     * Create mu plugin
     *
     * @return bool true on success, fail on failure
     */
    public static function create()
    {
        if (!is_dir(WPMU_PLUGIN_DIR)) {
            if (wp_mkdir_p(WPMU_PLUGIN_DIR) === false) {
                return false;
            }
        }
        $muPluginFile = trailingslashit(WPMU_PLUGIN_DIR) . self::NAME;
        return (file_put_contents($muPluginFile, self::getPluginContent()) !== false);
    }
    /**
     * Remove/disable mu plugin
     *
     * @return bool true on success, false on failure
     */
    public static function remove()
    {
        $muPluginFile = trailingslashit(WPMU_PLUGIN_DIR) . self::NAME;
        if (file_exists($muPluginFile)) {
            return unlink($muPluginFile);
        }
        return true;
    }
    /**
     * Return mu plugin content
     *
     * @return string
     */
    protected static function getPluginContent(): string
    {
        $pluginVersion = DUPLICATOR_PRO_VERSION;
        return <<<MUCONTENT
<?php
/**
 * Plugin Name: Duplicator mu-plugin
 * Description: Duplicator startup utiliy plugin.
 * Version    : {$pluginVersion}
 * Author     : Snap Creek
 * Author URI : http://snapcreek.com
 * License    : GPLv2 or later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 */
defined('ABSPATH') || exit;
define('DUPLICATOR_MU_PLUGIN_VERSION', '{$pluginVersion}');
use Duplicator\MuPlugin\MuBootstrap;
\$bootstrapFile = WP_PLUGIN_DIR . '/duplicator-pro/src/MuPlugin/MuBootstrap.php';
if (file_exists(\$bootstrapFile)) {
    include(\$bootstrapFile);
    if (class_exists(MuBootstrap::class)) {
        MuBootstrap::init();
    }
}
MUCONTENT;
    }
}