HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux bsx-1-dev 6.8.0-101-generic #101-Ubuntu SMP PREEMPT_DYNAMIC Mon Feb 9 10:15:05 UTC 2026 x86_64
User: www-data (33)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/revslider-bubblemorph-addon/includes/base.class.php
<?php
/* 
 * @author    ThemePunch <info@themepunch.com>
 * @link      http://www.themepunch.com/
 * @copyright 2024 ThemePunch
*/

if(!defined('ABSPATH')) exit();

require_once(RS_BUBBLEMORPH_PLUGIN_PATH . 'framework/base.class.php');

class RsBubblemorphBase extends RsAddOnBubblemorphBase {
	
	protected static $_PluginPath    = RS_BUBBLEMORPH_PLUGIN_PATH,
					 $_PluginUrl     = RS_BUBBLEMORPH_PLUGIN_URL,
					 $_PluginTitle   = 'bubblemorph',
				     $_FilePath      = __FILE__,
				     $_Version       = '6.7.4';
	
	public function __construct() {
		
		//load the textdomain, if the plugin should be translateable
		add_action('after_setup_theme', array($this, '_loadPluginTextDomain'), 10, 1);
		
		// check to make sure all requirements are met
		$notice = $this->systemsCheck();
		if($notice) {
			
			require_once(RS_BUBBLEMORPH_PLUGIN_PATH . 'framework/notices.class.php');
			
			new RsAddOnBubblemorphNotice($notice, static::$_PluginTitle, static::$_Version);
			return;
			
		}
		
		parent::loadClasses();

	}

}
?>