HEX
Server: Apache/2.4.54 (Debian)
System: Linux a5825d2beacc 4.15.0-197-generic #208-Ubuntu SMP Tue Nov 1 17:23:37 UTC 2022 x86_64
User: root (0)
PHP: 8.1.14
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/revslider/ADDONS/revslider-snow-addon/revslider-snow-addon.php
<?php
/*
Plugin Name: Slider Revolution Holiday Snow
Plugin URI: http://www.themepunch.com/
Description: Add animated snow to any Slider
Author: ThemePunch
Version: 1.0.3
Author URI: http://themepunch.com
*/

/*

SCRIPT HANDLES:
	
	'rs-snow-admin'
	'rs-snow-front'

*/

// If this file is called directly, abort.
if(!defined('WPINC')) die;

define('RS_SNOW_PLUGIN_PATH', plugin_dir_path(__FILE__));
define('RS_SNOW_PLUGIN_URL', str_replace('index.php', '', plugins_url( 'index.php', __FILE__)));

require_once(RS_SNOW_PLUGIN_PATH . 'includes/base.class.php');

/**
* handle everyting by calling the following function *
**/
function rs_snow_init(){
	
	new RsSnowBase();
	
}

/**
* call all needed functions on plugins loaded *
**/
add_action('plugins_loaded', 'rs_snow_init');


?>