HEX
Server: LiteSpeed
System: Linux vps338 6.12.0-211.34.1.el10_2.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 15 07:56:02 EDT 2026 x86_64
User: ondernemer (1054)
PHP: 8.3.32
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/ondernemer/public_html/wp-content/themes/dt-the7/inc/mods/bundled-content/wpb.php
<?php
/**
 * @package The7
 */

namespace The7\Mods\Bundled_Content;

defined( 'ABSPATH' ) || exit;

/**
 * WPB class.
 */
class WPB extends Abstract_Bundled_Plugin {

	/**
	 * @var string
	 */
	protected static $field_prefix = 'wpb_js_';

	/**
	 * @return void
	 */
	public function activate_plugin() {
		if ( $this->is_activated_plugin() ) {
			return;
		}

		if ( ! defined( 'JS_COMPOSER_THE7' ) && ! $this->is_bundled_plugin( 'js_composer' ) ) {
			$this->deactivate_plugin();
			return;
		}

		$this->disable_composer_notification();

		if ( $this->is_activated_by_theme() ) {
			add_filter( 'vc_page-welcome-slugs-list', [ $this, 'the7_vc_page_welcome_slugs_list' ], 30 );
			return;
		}

		update_site_option( self::$field_prefix . 'the7_js_composer_purchase_code', presscore_get_purchase_code() );
	}

	/**
	 * @return void
	 */
	public function deactivate_plugin() {
		$this->disable_composer_notification();

		if ( $this->is_activated_by_theme() ) {
			update_site_option( self::$field_prefix . 'the7_js_composer_purchase_code', '' );
		}
	}

	/**
	 * @return bool
	 */
	public function is_activated_plugin() {
		return (bool) get_site_option( self::$field_prefix . 'js_composer_purchase_code' );
	}

	/**
	 * @return bool
	 */
	public function is_active() {
		return the7_wpb_is_active();
	}

	/**
	 * @return string|false
	 */
	public function get_bundled_plugin_code() {
		return get_site_option( self::$field_prefix . 'the7_js_composer_purchase_code', '' );
	}

	/**
	 * @return void
	 */
	private function disable_composer_notification() {
		if ( ! function_exists( 'vc_manager' ) ) {
			return;
		}

		if ( version_compare( WPB_VC_VERSION, '5.5.4', '>' ) ) {
			return;
		}

		if ( ! $this->is_activated_plugin() && $this->is_activated_by_theme() ) {
			// Disable updater.
			vc_manager()->disableUpdater();
		}
	}

	/**
	 * @param array $dashboard_array Dashboard elements.
	 *
	 * @return array
	 */
	public function the7_vc_page_welcome_slugs_list( $dashboard_array ) {
		foreach ( [ 'vc-resources' ] as $element ) {
			unset( $dashboard_array[ $element ] );
		}

		return $dashboard_array;
	}

}