: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
* Plugin compatibility for CDN Enabler
* @link https://wordpress.org/plugins/cdn-enabler/
class ET_Builder_Plugin_Compat_CDN_Enabler extends ET_Builder_Plugin_Compat_Base {
public function __construct() {
$this->plugin_id = 'cdn-enabler/cdn-enabler.php';
* Replace CDN Enabler option with custom values.
* @param string $value Option value.
public function option_cdn_enabler( $value ) {
$excludes = et_()->array_get( $value, 'excludes', '' );
// If the fix isn't included
if ( substr( $excludes, -strlen( $fix ) ) !== $fix ) {
$value['excludes'] = "$excludes$fix";
* Hook methods to WordPress
* Latest plugin version: 1.0.8
public function init_hooks() {
// Bail if there's no version found
if ( ! $this->get_plugin_version() ) {
// phpcs:disable WordPress.Security.NonceVerification.NoNonceVerification
'vb' => et_()->array_get( $_GET, 'et_fb' ),
'bfb' => et_()->array_get( $_GET, 'et_bfb' ),
if ( $enabled['vb'] || $enabled['bfb'] ) {
add_action( 'option_cdn_enabler', array( $this, 'option_cdn_enabler' ) );
new ET_Builder_Plugin_Compat_CDN_Enabler();