HEX
Server: Apache
System: Linux d5123.usc1.stableserver.net 5.14.0-570.17.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Sat May 24 12:53:17 EDT 2025 x86_64
User: d5123 (1001)
PHP: 8.4.21
Disabled: NONE
Upload Files
File: /home/d5123/myboofola_com/wp-content/plugins/ultimate-multisite/constants.php
<?php
/**
 * Set additional Ultimate Multisite plugin constants.
 *
 * @package WP_Ultimo
 * @since 2.0.0
 */

// Exit if accessed directly
defined('ABSPATH') || exit;

// Plugin Folder Path
if ( ! defined('WP_ULTIMO_PLUGIN_DIR')) {
	define('WP_ULTIMO_PLUGIN_DIR', plugin_dir_path(WP_ULTIMO_PLUGIN_FILE));
}

// Plugin Folder URL
if ( ! defined('WP_ULTIMO_PLUGIN_URL')) {
	define('WP_ULTIMO_PLUGIN_URL', plugin_dir_url(WP_ULTIMO_PLUGIN_FILE));
}

// Plugin Root File
if ( ! defined('WP_ULTIMO_PLUGIN_BASENAME')) {
	define('WP_ULTIMO_PLUGIN_BASENAME', plugin_basename(WP_ULTIMO_PLUGIN_FILE));
}

/**
 * Feature flag: Enable Template Library.
 *
 * When set to true, enables the Template Library admin page.
 * Server-side functionality is not complete, so this defaults to false.
 * Developers can enable this by defining WU_TEMPLATE_LIBRARY_ENABLED as true
 * in wp-config.php before the plugin loads.
 *
 * @since 2.5.0
 */
if ( ! defined('WU_TEMPLATE_LIBRARY_ENABLED')) {
	define('WU_TEMPLATE_LIBRARY_ENABLED', false);
}

/**
 * Feature flag: Enable External Cron Service.
 *
 * When set to true, enables the External Cron manager, admin page,
 * and service integration. Server-side functionality is not complete,
 * so this defaults to false. Developers can enable this by defining
 * WU_EXTERNAL_CRON_ENABLED as true in wp-config.php before the plugin loads.
 *
 * @since 2.5.0
 */
if ( ! defined('WU_EXTERNAL_CRON_ENABLED')) {
	define('WU_EXTERNAL_CRON_ENABLED', false);
}

/**
 * Feature flag: Enable PayPal OAuth ("Connect with PayPal") onboarding.
 *
 * When set to true, enables the PayPal Partner Referrals one-click onboarding
 * flow. This requires an active PayPal Commerce Platform partner agreement —
 * `/v2/customer/partner-referrals`, partner-token minting via the proxy, and
 * `PayPal-Auth-Assertion` impersonation only work for approved partners.
 *
 * Defaults to false. Without partner status, merchants set up PayPal via the
 * guided manual-credentials wizard (developer.paypal.com REST app). When
 * Ultimate Multisite is approved as a PayPal partner again, define
 * WU_PAYPAL_OAUTH_ENABLED as true in wp-config.php to re-enable the
 * one-click flow.
 *
 * @since 2.6.0
 */
if ( ! defined('WU_PAYPAL_OAUTH_ENABLED')) {
	define('WU_PAYPAL_OAUTH_ENABLED', false);
}