/home/arranoyd/magicraft/wp-content/plugins/softaculous/softaculous.php
<?php
/*
Plugin Name: Softaculous
Plugin URI: https://softaculous.com/wordpress-plugin/
Description: Softaculous provides a centralized panel where you can manage all your WordPress websites singularly, unitedly as well as efficiently.
Version: 2.0.2
Author: Softaculous
Author URI: https://softaculous.com
License: LGPL v2.1
License URI: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
Text Domain: Softaculous
*/

/*
 * This file belongs to the softaculous plugin.
 *
 * (c) Softaculous <sales@softaculous.com>
 *
 * You can view the LICENSE file that was distributed with this source code
 * for copywright and license information.
 */

if (!defined('ABSPATH')){
    exit;
}

// Is the old plugin loaded ?
$_stmp_plugins = get_option('active_plugins');
if(in_array('wp-central/wpcentral.php', $_stmp_plugins)){
	$key = array_search('wp-central/wpcentral.php', $_stmp_plugins);
	unset($_stmp_plugins[$key]);
	update_option('active_plugins', $_stmp_plugins);
}

define('SOFTACULOUS_VERSION', '2.0.2');
define('SOFTACULOUS_BASE', 'softaculous/softaculous.php');
define('SOFTACULOUS_PANEL', 'wp.softaculous.com');
define('SOFTACULOUS_PANEL_IP', '138.201.40.162');
define('SOFTACULOUS_WWW_URL', 'https://softaculous.com/');
define('SOFTACULOUS_ADDSITE', 'https://wp.softaculous.com/index.php?act=wpc_addsite&auth_type=wordpress');

include_once(dirname(__FILE__).'/functions.php');

// Activation Hook
register_activation_hook(__FILE__, 'soft_activation_hook');

// De-activation Hook
register_deactivation_hook(__FILE__, 'soft_deactivation_hook');

add_action('plugins_loaded', 'soft_load_plugin');