HEX
Server: LiteSpeed
System: Linux cluster02.load-balancer.x2.network 4.18.0-553.51.1.lve.1.el8.x86_64 #1 SMP Wed May 14 14:34:57 UTC 2025 x86_64
User: kbdhpghp (1098)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /home/kbdhpghp/damusica.casa/wp-content/plugins/revslider-mousetrap-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_MOUSETRAP_PLUGIN_PATH . 'framework/base.class.php');

class RsMousetrapBase extends RsAddOnMousetrapBase {
	
	protected static $_PluginPath    = RS_MOUSETRAP_PLUGIN_PATH,
					 $_PluginUrl     = RS_MOUSETRAP_PLUGIN_URL,
					 $_PluginTitle   = 'mousetrap',
				     $_FilePath      = __FILE__,
				     $_Version       = '6.7.6';
	
	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_MOUSETRAP_PLUGIN_PATH . 'framework/notices.class.php');
			
			new RsAddOnMousetrapNotice($notice, static::$_PluginTitle, static::$_Version);
			return;
			
		}
		
		parent::loadClasses();

	}

}
?>