Current File : /home/inteuuod/public_html/1663847279691/wp-content/plugins/ninja-tables//ninja-tables.php
<?php
/**
* The plugin bootstrap file
*
* This file is read by WordPress to generate the plugin information in the plugin
* admin area. This file also includes all of the dependencies used by the plugin,
* registers the activation and deactivation functions, and defines a function
* that starts the plugin.
*
* @link https://wpmanageninja.com
* @since 1.0.0
*
* @package ninja-tables
*
* @wordpress-plugin
* Plugin Name: Ninja Tables
* Plugin URI: https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/
* Description: The Easiest & Fastest Responsive Table Plugin on WordPress. Multiple templates, drag-&-drop live table builder, multiple color scheme, and styles.
* Version: 4.2.3
* Author: WPManageNinja LLC
* Author URI: https://wpmanageninja.com/
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: ninja-tables
* Domain Path: /languages
*/
// If this file is called directly, abort.
if (!defined('WPINC')) {
die;
}
define('NINJA_TABLES_DIR_URL', plugin_dir_url(__FILE__));
define('NINJA_TABLES_DIR_PATH', plugin_dir_path(__FILE__));
define('NINJA_TABLES_PUBLIC_DIR_URL', NINJA_TABLES_DIR_URL . 'public/');
define('NINJA_TABLES_VERSION', '4.2.3');
define('NINJA_TABLES_ASSET_VERSION', '3.1.0');
define('NINJA_TABLES_PRELOAD_FONT_VERSION', "1a82860cb5286f7833a2c33fbdd1d76c");
$ninja_table_instances = array();
$ninja_table_current_rendering_table = array();
/**
* The code that runs during plugin activation.
* This action is documented in includes/NinjaTablesActivator.php
*/
function activate_ninja_tables($network_wide)
{
require_once plugin_dir_path(__FILE__) . 'includes/NinjaTablesActivator.php';
\NinjaTables\Classes\NinjaTablesActivator::activate($network_wide);
}
register_activation_hook(__FILE__, 'activate_ninja_tables');
function deactivate_ninja_tables()
{
require_once plugin_dir_path(__FILE__) . 'includes/NinjaTablesDeactivator.php';
\NinjaTables\Classes\NinjaTablesDeactivator::deactivate();
}
register_deactivation_hook(__FILE__, 'deactivate_ninja_tables');
// Handle Newtwork new Site Activation
add_action('wpmu_new_blog', function ($blogId) {
require_once plugin_dir_path(__FILE__) . 'includes/NinjaTablesActivator.php';
switch_to_blog($blogId);
\NinjaTables\Classes\NinjaTablesActivator::create_datatables_table();
restore_current_blog();
});
/**
* The core plugin class that is used to define internationalization,
* admin-specific hooks, and public-facing site hooks.
*/
require plugin_dir_path(__FILE__) . 'includes/NinjaTableClass.php';
/**
* Begins execution of the plugin.
*
* Since everything within the plugin is registered via hooks,
* then kicking off the plugin from this point in the file does
* not affect the page life cycle.
*
* @since 1.0.0
*/
function ninja_tables_boot()
{
$plugin = new \NinjaTables\Classes\NinjaTableClass();
$plugin->run();
}
// kick off
ninja_tables_boot();