| @@ -1,74 +1,133 @@ | ||
| 1 | -<?php | |
| 2 | -/** | |
| 3 | - * WordPress plugin "TablePress" main file, responsible for initiating the plugin | |
| 4 | - * | |
| 5 | - * @package TablePress | |
| 6 | - * @author Tobias Bäthge | |
| 7 | - * @version 1.14 | |
| 8 | - * | |
| 9 | - * | |
| 10 | - * Plugin Name: TablePress | |
| 11 | - * Plugin URI: https://tablepress.org/ | |
| 12 | - * Description: Embed beautiful and feature-rich tables into your posts and pages, without having to write code. | |
| 13 | - * Version: 1.14 | |
| 14 | - * Requires at least: 5.6 | |
| 15 | - * Requires PHP: 5.6.20 | |
| 16 | - * Author: Tobias Bäthge | |
| 17 | - * Author URI: https://tobias.baethge.com/ | |
| 18 | - * Author email: wordpress@tobias.baethge.com | |
| 19 | - * License: GPL 2 | |
| 20 | - * Donate URI: https://tablepress.org/donate/ | |
| 21 | - * | |
| 22 | - * | |
| 23 | - * Copyright 2012-2021 Tobias Bäthge | |
| 24 | - * | |
| 25 | - * TablePress is free software: you can redistribute it and/or modify | |
| 26 | - * it under the terms of the GNU General Public License, version 2, as published by | |
| 27 | - * the Free Software Foundation. | |
| 28 | - * | |
| 29 | - * TablePress is distributed in the hope that it will be useful, | |
| 30 | - * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 31 | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 32 | - * GNU General Public License for more details. | |
| 33 | - * | |
| 34 | - * You should have received a copy of the GNU General Public License | |
| 35 | - * along with WordPress. If not, see https://www.gnu.org/licenses/gpl-2.0.html. | |
| 36 | - */ | |
| 37 | - | |
| 38 | -// Prohibit direct script loading. | |
| 39 | -defined( 'ABSPATH' ) || die( 'No direct script access allowed!' ); | |
| 40 | - | |
| 41 | -// Define certain plugin variables as constants. | |
| 42 | -if ( ! defined( 'TABLEPRESS_ABSPATH' ) ) { | |
| 43 | - define( 'TABLEPRESS_ABSPATH', plugin_dir_path( __FILE__ ) ); | |
| 44 | -} | |
| 45 | - | |
| 46 | -if ( ! defined( 'TABLEPRESS__FILE__' ) ) { | |
| 47 | - define( 'TABLEPRESS__FILE__', __FILE__ ); | |
| 48 | -} | |
| 49 | - | |
| 50 | -if ( ! defined( 'TABLEPRESS__DIR__' ) ) { | |
| 51 | - define( 'TABLEPRESS__DIR__', __DIR__ ); | |
| 52 | -} | |
| 53 | - | |
| 54 | -if ( ! defined( 'TABLEPRESS_BASENAME' ) ) { | |
| 55 | - define( 'TABLEPRESS_BASENAME', plugin_basename( TABLEPRESS__FILE__ ) ); | |
| 56 | -} | |
| 57 | - | |
| 58 | -/* | |
| 59 | - * Define global JSON encoding options that TablePress uses. | |
| 60 | - */ | |
| 61 | -if ( ! defined( 'TABLEPRESS_JSON_OPTIONS' ) ) { | |
| 62 | - $tablepress_json_options = 0; | |
| 63 | - $tablepress_json_options |= JSON_UNESCAPED_SLASHES; // Don't escape slashes to make search/replace of URLs in the database much easier. | |
| 64 | - define( 'TABLEPRESS_JSON_OPTIONS', $tablepress_json_options ); | |
| 65 | - unset( $tablepress_json_options ); | |
| 66 | -} | |
| 67 | - | |
| 68 | -/** | |
| 69 | - * Load TablePress class, which holds common functions and variables. | |
| 70 | - */ | |
| 71 | -require_once TABLEPRESS_ABSPATH . 'classes/class-tablepress.php'; | |
| 72 | - | |
| 73 | -// Start up TablePress on WordPress's "init" action hook. | |
| 74 | -add_action( 'init', array( 'TablePress', 'run' ) ); | |
| 1 | +<?php | |
| 2 | +/** | |
| 3 | + * WordPress plugin "TablePress" main file, responsible for initiating the plugin. | |
| 4 | + * | |
| 5 | + * @package TablePress | |
| 6 | + * @author Tobias Bäthge | |
| 7 | + * @version 3.0.4 | |
| 8 | + * | |
| 9 | + * | |
| 10 | + * Plugin Name: TablePress | |
| 11 | + * Plugin URI: https://tablepress.org/ | |
| 12 | + * Description: Embed beautiful and interactive tables into your WordPress website’s posts and pages, without having to write code! | |
| 13 | + * Version: 3.0.4 | |
| 14 | + * Requires at least: 6.2 | |
| 15 | + * Requires PHP: 7.4 | |
| 16 | + * Author: Tobias Bäthge | |
| 17 | + * Author URI: https://tablepress.org/ | |
| 18 | + * Author email: wordpress@tobias.baethge.com | |
| 19 | + * License: GPL 2 | |
| 20 | + * Donate URI: https://tablepress.org/donate/ | |
| 21 | + * | |
| 22 | + * | |
| 23 | + * Copyright 2012-2025 Tobias Bäthge | |
| 24 | + * | |
| 25 | + * TablePress is free software: you can redistribute it and/or modify | |
| 26 | + * it under the terms of the GNU General Public License, version 2, as published by | |
| 27 | + * the Free Software Foundation. | |
| 28 | + * | |
| 29 | + * TablePress is distributed in the hope that it will be useful, | |
| 30 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 31 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 32 | + * GNU General Public License for more details. | |
| 33 | + * | |
| 34 | + * You should have received a copy of the GNU General Public License | |
| 35 | + * along with WordPress. If not, see https://www.gnu.org/licenses/gpl-2.0.html. | |
| 36 | + * | |
| 37 | + * Note: This file must not contain PHP code that does not run on PHP < 7.4! | |
| 38 | + */ | |
| 39 | + | |
| 40 | +// Prohibit direct script loading. | |
| 41 | +defined( 'ABSPATH' ) || die( 'No direct script access allowed!' ); | |
| 42 | + | |
| 43 | +if ( ! defined( 'TABLEPRESS_IS_PLAYGROUND_PREVIEW' ) ) { | |
| 44 | + define( 'TABLEPRESS_IS_PLAYGROUND_PREVIEW', false ); | |
| 45 | +} | |
| 46 | + | |
| 47 | +if ( function_exists( 'tb_tp_fs' ) ) { | |
| 48 | + tb_tp_fs()->set_basename( false, __FILE__ ); // @phpstan-ignore argument.type (Wrong variable type in Freemius function docblock.) | |
| 49 | +} else { | |
| 50 | + /** | |
| 51 | + * Helper function for easier Freemius SDK access. | |
| 52 | + * | |
| 53 | + * @since 2.0.0 | |
| 54 | + * | |
| 55 | + * @return Freemius Freemius SDK instance. | |
| 56 | + */ | |
| 57 | + function tb_tp_fs() /* No return type declaration, due to required PHP compatibility of this file! */ { | |
| 58 | + global $tb_tp_fs; | |
| 59 | + | |
| 60 | + if ( ! isset( $tb_tp_fs ) ) { | |
| 61 | + // Include Freemius SDK. | |
| 62 | + require_once __DIR__ . '/libraries/freemius/start.php'; | |
| 63 | + | |
| 64 | + $tb_tp_fs = fs_dynamic_init( array( | |
| 65 | + 'id' => '10340', | |
| 66 | + 'slug' => 'tablepress', | |
| 67 | + 'type' => 'plugin', | |
| 68 | + 'public_key' => 'pk_b215ca1bb4041cf43ed137ae7665b', | |
| 69 | + 'is_premium' => false, | |
| 70 | + 'has_addons' => false, | |
| 71 | + 'has_paid_plans' => true, | |
| 72 | + 'menu' => array( | |
| 73 | + 'slug' => 'tablepress', | |
| 74 | + 'contact' => false, | |
| 75 | + 'support' => false, | |
| 76 | + 'account' => false, | |
| 77 | + ), | |
| 78 | + 'opt_in_moderation' => array( | |
| 79 | + 'new' => true, | |
| 80 | + 'updates' => false, | |
| 81 | + 'localhost' => false, | |
| 82 | + ), | |
| 83 | + 'is_live' => true, | |
| 84 | + 'anonymous_mode' => TABLEPRESS_IS_PLAYGROUND_PREVIEW, | |
| 85 | + ) ); | |
| 86 | + } | |
| 87 | + | |
| 88 | + return $tb_tp_fs; | |
| 89 | + } | |
| 90 | + | |
| 91 | + // Init Freemius. | |
| 92 | + tb_tp_fs(); | |
| 93 | + | |
| 94 | + // Register Freemius plugin filter hooks. | |
| 95 | + require_once __DIR__ . '/controllers/freemius-filters.php'; | |
| 96 | + | |
| 97 | + // Signal that the SDK was initiated. | |
| 98 | + do_action( 'tb_tp_fs_loaded' ); | |
| 99 | + | |
| 100 | + /* | |
| 101 | + * Define certain plugin variables as constants. | |
| 102 | + */ | |
| 103 | + if ( ! defined( 'TABLEPRESS_ABSPATH' ) ) { | |
| 104 | + define( 'TABLEPRESS_ABSPATH', trailingslashit( __DIR__ ) ); | |
| 105 | + } | |
| 106 | + if ( ! defined( 'TABLEPRESS__FILE__' ) ) { | |
| 107 | + define( 'TABLEPRESS__FILE__', __FILE__ ); | |
| 108 | + } | |
| 109 | + if ( ! defined( 'TABLEPRESS_BASENAME' ) ) { | |
| 110 | + define( 'TABLEPRESS_BASENAME', plugin_basename( TABLEPRESS__FILE__ ) ); | |
| 111 | + } | |
| 112 | + if ( ! defined( 'TABLEPRESS_JSON_OPTIONS' ) ) { | |
| 113 | + // JSON_UNESCAPED_SLASHES: Don't escape slashes, e.g. to make search/replace of URLs in the database easier. | |
| 114 | + define( 'TABLEPRESS_JSON_OPTIONS', JSON_UNESCAPED_SLASHES ); | |
| 115 | + } | |
| 116 | + | |
| 117 | + /* | |
| 118 | + * Check if the site environment fulfills the minimum requirements. | |
| 119 | + */ | |
| 120 | + if ( ! require_once TABLEPRESS_ABSPATH . 'controllers/environment-checks.php' ) { | |
| 121 | + return; // Exit early if the return value from the file is false. | |
| 122 | + } | |
| 123 | + | |
| 124 | + /* | |
| 125 | + * Load TablePress class, which holds common functions and variables. | |
| 126 | + */ | |
| 127 | + require_once TABLEPRESS_ABSPATH . 'classes/class-tablepress.php'; | |
| 128 | + | |
| 129 | + /* | |
| 130 | + * Start up TablePress on WordPress's "init" action hook. | |
| 131 | + */ | |
| 132 | + add_action( 'init', array( 'TablePress', 'run' ) ); | |
| 133 | +} | |