PluginProbe
TableKit – WordPress Table Builder for Data Tables, WooCommerce Product Tables & Post Tables / 2.2.4
TableKit – WordPress Table Builder for Data Tables, WooCommerce Product Tables & Post Tables v2.2.4
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.4, at table-builder-block.php

129 lines 4.1 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.4
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.4';
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 add_action( 'admin_init', [ $this, 'maybe_redirect_to_onboard' ] );
48 }
49
50 public static function activate(): void {
51 if ( get_transient( 'tablekit_skip_activation_redirect' ) ) {
52 return;
53 }
54
55 if ( ! get_option( 'tablebuilder_onboard_completed', false ) ) {
56 set_transient( 'tablebuilder_show_onboard', 1, DAY_IN_SECONDS );
57 set_transient( 'tablebuilder_do_activation_redirect', 1, MINUTE_IN_SECONDS );
58 }
59 }
60
61 private function define_constants(): void {
62 define( 'TABLE_BUILDER_BLOCK_PLUGIN_VERSION', self::VERSION );
63 define( 'TABLE_BUILDER_BLOCK_PLUGIN_URL', trailingslashit( plugin_dir_url( __FILE__ ) ) );
64 define( 'TABLE_BUILDER_BLOCK_PLUGIN_DIR', trailingslashit( plugin_dir_path( __FILE__ ) ) );
65 define( 'TABLE_BUILDER_BLOCK_INC_DIR', TABLE_BUILDER_BLOCK_PLUGIN_DIR . 'includes/' );
66 define( 'TABLE_BUILDER_BLOCK_STYLE_DIR', TABLE_BUILDER_BLOCK_PLUGIN_DIR . 'build/styles/' );
67 define( 'TABLE_BUILDER_BLOCK_DIR', TABLE_BUILDER_BLOCK_PLUGIN_DIR . 'build/blocks/' );
68 }
69
70
71 // Prevent activation redirects when plugins are activated programmatically.
72 // Intercepts wp_redirect/wp_safe_redirect during REST API activation.
73 public function prevent_activation_redirect(): void {
74 if ( get_transient( 'tablekit_skip_activation_redirect' ) ) {
75 add_filter( 'wp_redirect', '__return_empty_string', 999 );
76 add_filter( 'wp_safe_redirect_fallback', '__return_empty_string', 999 );
77 }
78 }
79
80 public function on_plugins_loaded(): void {
81 do_action( 'tablebuilder/before_init' );
82
83 TableBuilder\Hooks\AssetGenerator::instance();
84 TableBuilder\Core\Enqueue::instance();
85 TableBuilder\Core\RestApi::instance();
86 TableBuilder\Config\Blocks::instance();
87 TableBuilder\Admin\Admin::instance();
88
89 if ( is_admin() ) {
90 TableBuilder\Libs\UtilityPackages::instance();
91 }
92
93 // Data migration
94 // TODO:: WIll be removed in next upcoming version
95 (new TableBuilder\Core\DataMigration());
96
97 add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), [ $this, 'plugin_action_link' ] );
98 }
99
100 public function maybe_redirect_to_onboard(): void {
101 if ( ! is_admin() || ! current_user_can( 'manage_options' ) ) {
102 return;
103 }
104
105 if ( ! get_transient( 'tablebuilder_do_activation_redirect' ) ) {
106 return;
107 }
108
109 if ( isset( $_GET['activate-multi'] ) ) {
110 delete_transient( 'tablebuilder_do_activation_redirect' );
111 return;
112 }
113
114 delete_transient( 'tablebuilder_do_activation_redirect' );
115 wp_safe_redirect( admin_url( 'admin.php?page=tablebuilder&onboard=1' ) );
116 exit;
117 }
118
119 public function plugin_action_link( array $plugin_actions ): array {
120 return $plugin_actions;
121 }
122 }
123
124 if ( class_exists( 'TableBuilder' ) ) {
125 TableBuilder::get_instance();
126 }
127
128 register_activation_hook( __FILE__, [ 'TableBuilder', 'activate' ] );
129