* @link http://www.themepunch.com/ * @copyright 2016 ThemePunch */ if(!defined('ABSPATH')) exit(); require_once(RS_SNOW_PLUGIN_PATH . 'framework/base.class.php'); class RsSnowBase extends RsAddOnSnowBase { protected static $_PluginPath = RS_SNOW_PLUGIN_PATH, $_PluginUrl = RS_SNOW_PLUGIN_URL, $_PluginTitle = 'snow', $_FilePath = __FILE__, $_Version = '1.0.3'; 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_SNOW_PLUGIN_PATH . 'framework/notices.class.php'); new RsAddOnSnowNotice($notice, static::$_PluginTitle); return; } parent::loadClasses(); } } ?>