HEX
Server: Apache/2.4.37 (AlmaLinux) mpm-itk/2.4.7-04 OpenSSL/1.1.1k PHP/7.2.24
System: Linux cp.iqhost.ru 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User: iq22073873 (6195)
PHP: 7.2.24
Disabled: NONE
Upload Files
File: /var/www/iq22073873/data/www/bckln.ru/wp-content/plugins/go_pricing/go_pricing.php
<?php
/**
 * Plugin Name: Go Pricing - WordPress Responsive Pricing Tables
 * Plugin URI:  http://go-pricing.com
 * Description: The New Generation Pricing Tables. If you like traditional Pricing Tables, but you would like get much more out of it, then this rodded product is a useful tool for you.
 * Version:     3.2.1
 * Author:      Granth
 * Author URI:  http://granthweb.com
 * Text Domain: go_pricing_textdomain
 * Domain Path: /lang
 */


// Prevent direct call
if ( !defined( 'WPINC' ) ) die;

// Prevent redeclaring class
if ( class_exists( 'GW_GoPricing' ) ) wp_die ( __( 'GW_GoPricing class has already been declared!', 'go_pricing_textdomain' ) );	

// Include & init main class
include_once( plugin_dir_path( __FILE__ ) . 'includes/class_go_pricing.php' );
GW_GoPricing::instance( __FILE__ );

// Register activation / deactivation / uninstall hooks
register_activation_hook( __FILE__, array( 'GW_GoPricing', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'GW_GoPricing', 'deactivate' ) );
register_uninstall_hook( __FILE__, array( 'GW_GoPricing', 'uninstall' ) );

?>