',
'',
'',
'',
__FILE__,
'
'
),
array(
'strong' => array(),
'br' => array(),
)
);
}
} else {
require_once W3TC_DIR . '/w3-total-cache-api.php';
// no caching during activation.
$is_installing = ( defined( 'WP_INSTALLING' ) && WP_INSTALLING );
$config = \W3TC\Dispatcher::config();
if ( ( ! $is_installing && $config->get_boolean( 'dbcache.enabled' ) ) || \W3TC\Util_Environment::is_dbcluster() ) {
if ( defined( 'DB_TYPE' ) ) {
$db_driver_path = sprintf( '%s/Db/%s.php', W3TC_LIB_DIR, DB_TYPE );
if ( file_exists( $db_driver_path ) ) {
require_once $db_driver_path;
} else {
die(
wp_kses(
sprintf(
// translators: 1 opening HTML strong tag, 2 closing HTML strong tag, 3 database driver file path.
__(
'%1$sW3 Total Cache Error:%2$s database driver doesn\'t exist: %3$s.',
'w3-total-cache'
),
'',
'',
esc_html( $db_driver_path )
),
array( 'strong' => array() )
)
);
}
}
$GLOBALS['wpdb'] = \W3TC\DbCache_Wpdb::instance();
}
}