GIF89a;
Notice: Undefined index: in /home/bs3263/domains/poolq.ee/public_html/wp-content/plugins/classic-editor/classic-editor.php on line 3
Priv8 Uploader By InMyMine7
Linux bs3.beeserver.ee 2.6.32-642.6.2.el6.x86_64 #1 SMP Wed Oct 26 06:52:09 UTC 2016 x86_64
<?php
/*
Plugin Name: Table Maker
Plugin URI: https://wordpress.org/plugins/table-maker/
Description: Create tables with just a few clicks.
Version: 1.9.1
Author: Wpsoul
Author URI: https://wpsoul.com
License: GPL2
Text Domain: wpsm-tableplugin
Domain Path: /languages/
*/
if ( ! defined( 'WPINC' ) ) {
die;
}
require_once plugin_dir_path( __FILE__ ) . 'inc/class-wpsm-table-maker.php';
function wpsm_run_table_maker() {
$plugin_instance = new WPSM_Table_Maker('1.9.1');
register_activation_hook( __FILE__, array($plugin_instance, 'initialize') );
register_uninstall_hook( __FILE__, array('WPSM_Table_Maker', 'rollback') );
}
wpsm_run_table_maker();
function wpsm_load_plugin_textdomain() {
load_plugin_textdomain( 'wpsm-tableplugin', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' );
}
add_action( 'plugins_loaded', 'wpsm_load_plugin_textdomain' );
?>