XylotrechusZ
XylotrechusZ Shell
: /home/matican/vahabathari.com/wp-content/plugins/revslider-mousetrap-addon/includes/ [ drwxr-xr-x ]
<?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();
}
}
?>