XylotrechusZ
XylotrechusZ Shell
: /home/matican/vahabathari.com/wp-content/plugins/revslider-panorama-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_PANORAMA_PLUGIN_PATH . 'framework/base.class.php');
class RsPanoramaBase extends RsAddOnPanoramaBase {
protected static $_PluginPath = RS_PANORAMA_PLUGIN_PATH,
$_PluginUrl = RS_PANORAMA_PLUGIN_URL,
$_PluginTitle = 'panorama',
$_FilePath = __FILE__,
$_Version = '6.7.2';
public function __construct() {
//load the textdomain, if the plugin should be translateable
parent::_loadPluginTextDomain();
// check to make sure all requirements are met
$notice = $this->systemsCheck();
if($notice) {
require_once(RS_PANORAMA_PLUGIN_PATH . 'framework/notices.class.php');
new RsAddOnPanoramaNotice($notice, static::$_PluginTitle, static::$_Version);
return;
}
parent::loadClasses();
}
}
?>