| Server IP : 185.143.233.238 / Your IP : 185.215.232.195 Web Server : nginx/1.22.1 System : Linux server2065 6.1.0-35-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.137-1 (2025-05-07) x86_64 User : www-data ( 33) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/bcandle/wp-content/plugins/duplicator/classes/host/ |
Upload File : |
<?php
/**
* godaddy custom hosting class
*
* Standard: PSR-2
*
* @package SC\DUPX\HOST
* @link http://www.php-fig.org/psr/psr-2/
*/
use Duplicator\Libs\Snap\SnapIO;
defined('ABSPATH') || defined('DUPXABSPATH') || exit;
class DUP_WordpressCom_Host implements DUP_Host_interface
{
public static function getIdentifier()
{
return DUP_Custom_Host_Manager::HOST_WORDPRESSCOM;
}
public function isHosting()
{
return apply_filters(
'duplicator_pro_wordpress_host_check',
file_exists(SnapIO::safePathUntrailingslashit(WPMU_PLUGIN_DIR) . '/wpcomsh-loader.php')
);
}
public function init()
{
}
}