
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
/**
 * Plugin Name: Yet Skin - Add-on for Go Pricing
 * Plugin URI:  http://www.go-pricing.com/yet
 * Description: Yet will enable you to create totally unique tables that fit perfectly to your style and theme. Express your tables in complete freedom, this time only your imagination is the limit. Yet is a skin that expands your table editing capabilities by letting you configuring almost anything without coding knowledge.
 * Version:     1.2.0
 * Author:      Granth
 * Author URI:  http://granthweb.com
 * Text Domain: go_pricing_yet_textdomain
 * Domain Path: /lang
 */


// Prevent direct call
if ( !defined( 'WPINC' ) ) die;

// Prevent redeclaring class
if ( class_exists( 'GW_GoPricing_Yet' ) ) wp_die ( __( 'GW_GoPricing_Yet class has been declared!', 'go_pricing_yet_textdomain' ) );	

// Include & init main class
include_once( plugin_dir_path( __FILE__ ) . 'includes/class_yet.php' );
add_action( 'go_pricing_init', 'go_pricing_yet_init' );
function go_pricing_yet_init() {
	GW_GoPricing_Yet::instance( __FILE__ );
}

// Register activation / deactivation / uninstall hooks
register_activation_hook( __FILE__, array( 'GW_GoPricing_Yet', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'GW_GoPricing_Yet', 'deactivate' ) );
register_uninstall_hook( __FILE__, array( 'GW_GoPricing_Yet', 'uninstall' ) );

// Activation error admin notice
add_action( 'admin_notices', array( 'GW_GoPricing_Yet', 'activate_error' ) );

?>