HEX
Server: Apache
System: Linux ecngx285.inmotionhosting.com 4.18.0-553.79.1.lve.el8.x86_64 #1 SMP Wed Oct 15 17:59:35 UTC 2025 x86_64
User: zeusxp5 (3862)
PHP: 8.3.28
Disabled: NONE
Upload Files
File: /home/zeusxp5/lrliberia.com/wp-content/plugins/boldgrid-backup/cron/cli-support.php
<?php
/**
 * File: cli-support.php
 *
 * Test for support from the command line.
 *
 * @link       https://www.boldgrid.com
 * @since      1.6.2
 *
 * @package    Boldgrid_Backup
 * @subpackage Boldgrid_Backup/cron
 * @copyright  BoldGrid
 * @author     BoldGrid <support@boldgrid.com>
 *
 * @see Boldgrid_Backup_Admin_Test::get_cli_support().
 */

// phpcs:disable WordPress.WP.AlternativeFunctions

// Require Boldgrid_Backup_Url_Helper class.
require dirname( __FILE__ ) . '/class-boldgrid-backup-url-helper.php';

$url_helper = new Boldgrid_Backup_Url_Helper();

die(
	json_encode(
		array(
			'has_curl_ssl'  => $url_helper->has_curl_ssl(),
			'has_url_fopen' => $url_helper->has_url_fopen(),
		)
	)
);