PluginProbe
TableKit – WordPress Table Builder for Data Tables, WooCommerce Product Tables & Post Tables / 2.2.2
TableKit – WordPress Table Builder for Data Tables, WooCommerce Product Tables & Post Tables v2.2.2
2.2.14 2.2.13 2.2.12 2.2.11 2.2.10 2.2.9 2.2.8 2.2.7 2.2.6 2.2.5 2.2.4 2.2.3 trunk 1.0.0 1.0.1 2.0.0 2.0.1 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2
table-builder-block / table-builder-block.php

table-builder-block.php in TableKit – WordPress Table Builder for Data Tables, WooCommerce Product Tables & Post Tables 2.2.2, at table-builder-block.php

92 lines 3.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: TableKit
4 * Description: Powerful Table Builder for Gutenberg block editor.
5 * Requires at least: 6.1
6 * Requires PHP: 7.4
7 * Plugin URI: https://wpmet.com/plugin/gutenkit/
8 * Author: Wpmet
9 * Version: 2.2.2
10 * Author URI: https://wpmet.com/
11 * License: GPL-3.0-or-later
12 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
13 *
14 * Text Domain: table-builder-block
15 * Domain Path: /languages
16 */
17
18 // Exit if accessed directly.
19 if ( ! defined( 'ABSPATH' ) ) {
20 exit;
21 }
22
23 final class TableBuilder {
24 const VERSION = '2.2.2';
25
26 private static $instance = null;
27
28 public static function get_instance(): TableBuilder {
29 if ( null === self::$instance ) {
30 self::$instance = new self();
31 }
32 return self::$instance;
33 }
34
35 private function __construct() {
36 $this->define_constants();
37
38 // Prevent redirects during programmatic plugin activation
39 // This hook runs very early to intercept activation redirects from other plugins
40 add_action( 'admin_init', [ $this, 'prevent_activation_redirect' ], 1 );
41
42 // Make sure ADD AUTOLOAD is scoped/vendor/scoper-autoload.php file
43 require_once TABLE_BUILDER_BLOCK_PLUGIN_DIR . '/scoped/vendor/scoper-autoload.php';
44
45 // Fires after initialization of the GutenKit plugin
46 add_action( 'plugins_loaded', [ $this, 'on_plugins_loaded' ] );
47 }
48
49 private function define_constants(): void {
50 define( 'TABLE_BUILDER_BLOCK_PLUGIN_VERSION', self::VERSION );
51 define( 'TABLE_BUILDER_BLOCK_PLUGIN_URL', trailingslashit( plugin_dir_url( __FILE__ ) ) );
52 define( 'TABLE_BUILDER_BLOCK_PLUGIN_DIR', trailingslashit( plugin_dir_path( __FILE__ ) ) );
53 define( 'TABLE_BUILDER_BLOCK_INC_DIR', TABLE_BUILDER_BLOCK_PLUGIN_DIR . 'includes/' );
54 define( 'TABLE_BUILDER_BLOCK_STYLE_DIR', TABLE_BUILDER_BLOCK_PLUGIN_DIR . 'build/styles/' );
55 define( 'TABLE_BUILDER_BLOCK_DIR', TABLE_BUILDER_BLOCK_PLUGIN_DIR . 'build/blocks/' );
56 }
57
58
59 // Prevent activation redirects when plugins are activated programmatically.
60 // Intercepts wp_redirect/wp_safe_redirect during REST API activation.
61 public function prevent_activation_redirect(): void {
62 if ( get_transient( 'tablekit_skip_activation_redirect' ) ) {
63 add_filter( 'wp_redirect', '__return_empty_string', 999 );
64 add_filter( 'wp_safe_redirect_fallback', '__return_empty_string', 999 );
65 }
66 }
67
68 public function on_plugins_loaded(): void {
69 do_action( 'tablebuilder/before_init' );
70
71 TableBuilder\Hooks\AssetGenerator::instance();
72 TableBuilder\Core\Enqueue::instance();
73 TableBuilder\Core\RestApi::instance();
74 TableBuilder\Config\Blocks::instance();
75 TableBuilder\Admin\Admin::instance();
76
77 // Data migration
78 // TODO:: WIll be removed in next upcoming version
79 (new TableBuilder\Core\DataMigration());
80
81 add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), [ $this, 'plugin_action_link' ] );
82 }
83
84 public function plugin_action_link( array $plugin_actions ): array {
85 return $plugin_actions;
86 }
87 }
88
89 if ( class_exists( 'TableBuilder' ) ) {
90 TableBuilder::get_instance();
91 }
92