| Server IP : 104.21.74.147 / Your IP : 216.73.217.154 Web Server : nginx/1.24.0 System : Linux wordpress-sites 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/rebeccaone.com/wp-content/plugins/loginpress/lib/wpb-sdk/ |
Upload File : |
<?php
/**
* Loads WPBrigade SDK core classes (single runtime).
*
* @package wpbrigade_sdk
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
require_once __DIR__ . '/config.php';
$wpb_sdk_runtime_includes = __DIR__ . '/includes';
// Full runtime already loaded from this or another bundle path.
if ( class_exists( 'WPBRIGADE_Opt_Manager', false ) ) {
return;
}
// Merge new helpers (function_exists guards) and load classes missing from legacy bundles.
require_once $wpb_sdk_runtime_includes . '/wpb-sdk-essential-functions.php';
if ( ! class_exists( 'WPBRIGADE_Optin_Verification', false ) ) {
require_once $wpb_sdk_runtime_includes . '/class-wpb-sdk-optin-verification.php';
}
if ( ! class_exists( 'WPBRIGADE_Opt_Manager', false ) ) {
require_once $wpb_sdk_runtime_includes . '/class-wpb-opt-manager.php';
}
// Legacy LoginPress may have loaded Logger from a different path already.
if ( ! class_exists( 'WPBRIGADE_Logger', false ) ) {
require_once $wpb_sdk_runtime_includes . '/class-wpb-sdk-logger.php';
}