HEX
Server: Apache/2.4.37 (CentOS Stream) OpenSSL/1.1.1k
System: Linux ysnet.com.tw 4.18.0-553.5.1.el8.x86_64 #1 SMP Tue May 21 05:46:01 UTC 2024 x86_64
User: test (521)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /var/www/test/wp-content/plugins/wp-snow/wp-snow.php
<?php
/**
 * Plugin Name:  WP Snow - Best Snow Effect Plugin
 * Plugin URI: https://ironikus.com/downloads/wp-snow/
 * Description: The best (snow)flakes animation for WordPress.
 * Version: 1.0.3
 * Author: Ironikus
 * Author URI: https://ironikus.com/
 * License: GPL2
 *
 * You should have received a copy of the GNU General Public License
 * along with TMG User Filter. If not, see <http://www.gnu.org/licenses/>.
 */

// Exit if accessed directly.
if ( !defined( 'ABSPATH' ) ) exit;

// Plugin name.
define( 'WPSNOW_NAME',           'WP Snow' );

// Plugin version.
define( 'WPSNOW_VERSION',        '1.0.3' );

// Plugin Root File.
define( 'WPSNOW_PLUGIN_FILE',    __FILE__ );

// Plugin base.
define( 'WPSNOW_PLUGIN_BASE',    plugin_basename( WPSNOW_PLUGIN_FILE ) );

// Plugin Folder Path.
define( 'WPSNOW_PLUGIN_DIR',     plugin_dir_path( WPSNOW_PLUGIN_FILE ) );

// Plugin Folder URL.
define( 'WPSNOW_PLUGIN_URL',     plugin_dir_url( WPSNOW_PLUGIN_FILE ) );

// Plugin Root File.
define( 'WPSNOW_TEXTDOMAIN',     'wp-snow' );

/**
 * Load the main class for our plugin
 */
require_once WPSNOW_PLUGIN_DIR . 'core/class-wp-snow.php';

new WP_Snow();