PluginProbe
Tableberg – Simple Gutenberg Table Block / 1.1.5
Tableberg – Simple Gutenberg Table Block v1.1.5
1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 trunk 0.0.2 0.2.1 0.3.2 0.3.3 0.4.1 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 All 42 releases
← All changes | includes/Admin/Tableberg_Admin.php +206 -170 0.3.21.1.5 View file →
@@ -1,194 +1,230 @@
1 1 <?php
2 -/**
3 - * The admin-specific functionality of the plugin.
4 - *
5 - * @package tableberg
6 - */
7 2
8 3 namespace Tableberg\Admin;
9 4
10 5 use Tableberg;
11 -use Tableberg\Version_Control;
12 -/**
13 - * Manage Tableberg Admin
14 - */
6 +
15 7 class Tableberg_Admin {
16 - /**
17 - * The ID of this plugin.
18 - *
19 - * @access private
20 - * @var string $plugin_name The ID of this plugin.
21 - */
22 - private $plugin_name;
8 + private $plugin_name;
9 + private $plugin_url;
23 10
24 - /**
25 - * The version of this plugin.
26 - *
27 - * @access private
28 - * @var string $version The current version of this plugin.
29 - */
30 - private $version;
31 - /**
32 - * The PATH of this plugin.
33 - *
34 - * @access private
35 - * @var string $plugin_path The PATH of this plugin.
36 - */
37 - private $plugin_path;
11 + public function __construct() {
38 12
39 - /**
40 - * The URL of this plugin.
41 - *
42 - * @access private
43 - * @var string $plugin_url The URL of this plugin.
44 - */
45 - private $plugin_url;
13 + $this->plugin_name = 'tableberg';
14 + $this->plugin_url = TABLEBERG_URL;
46 15
47 - /**
48 - * Initialize the class and set its properties.
49 - */
50 - public function __construct() {
16 + add_action('wp_ajax_tableberg_toggle_control', [$this, 'update_toggle_control']);
17 + add_action('wp_ajax_tableberg_block_properties', [$this, 'update_block_properties']);
51 18
52 - $this->plugin_name = 'tableberg';
53 - $this->version = TABLEBERG_VERSION;
54 - $this->plugin_path = TABLEBERG_DIR_PATH;
55 - $this->plugin_url = TABLEBERG_URL;
56 - $this->add_tableberg_admin_hook();
19 + add_action('admin_menu', [$this, 'register_admin_menus']);
20 + add_action('admin_enqueue_scripts', [$this, 'enqueue_admin_script']);
21 + add_action('admin_notices', [$this, 'tableberg_review_notice']);
22 + add_action('wp_ajax_TablebergReviewNoticeHide', [$this, 'tableberg_hide_review_notify']);
23 + add_filter('tableberg/filter/admin_settings_menu_data', [$this, 'add_settings_menu_data'], 1, 1);
24 + }
57 25
58 - // initialize version sync manager.
59 - Tableberg\Version_Sync_Manager::init();
26 + private function update_block_properties() {
27 + if (
28 + check_ajax_referer('block_properties') &&
29 + isset($_POST['value']) &&
30 + isset($_POST['property_name']) &&
31 + current_user_can('manage_options')
32 + ) {
33 + $value = sanitize_text_field(wp_unslash($_POST['value']));
34 + $property_name = sanitize_text_field(wp_unslash($_POST['property_name']));
35 + $saved_properties = get_option('tableberg_block_properties', false);
36 + if ($saved_properties) {
37 + foreach ($saved_properties as $key => $property) {
38 + if ($property['name'] === $property_name) {
39 + $saved_properties[$key]['value'] = (int) $value;
40 + }
41 + }
42 + }
60 43
61 - // initialize version control manager.
62 - Version_Control::init();
44 + update_option('tableberg_block_properties', $saved_properties);
45 + }
63 46
64 - add_action( 'admin_menu', array( $this, 'register_admin_menus' ) );
65 - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_script' ) );
66 - add_filter( 'tableberg/filter/admin_settings_menu_data', array( $this, 'add_settings_menu_data' ), 1, 1 );
67 - }
68 - /**
69 - * Add hook
70 - */
71 - public function add_tableberg_admin_hook() {
72 - add_action( 'wp_ajax_toggle_control', array( $this, 'update_toggle_control' ) );
73 - add_action( 'wp_ajax_block_properties', array( $this, 'update_block_properties' ) );
74 - }
47 + die();
48 + }
75 49
76 - /**
77 - * Block properties control
78 - */
79 - private function update_block_properties() {
80 - check_ajax_referer( 'block_properties' );
50 + private function update_toggle_control() {
81 51
82 - if ( isset( $_POST['value'] ) && isset( $_POST['property_name'] ) ) {
83 - $value = sanitize_text_field( wp_unslash( $_POST['value'] ) );
84 - $property_name = sanitize_text_field( wp_unslash( $_POST['property_name'] ) );
85 - $saved_properties = get_option( 'tableberg_block_properties', false );
86 - if ( $saved_properties ) {
87 - foreach ( $saved_properties as $key => $property ) {
88 - if ( $property['name'] === $property_name ) {
89 - $saved_properties[ $key ]['value'] = (int) $value;
90 - }
91 - }
92 - }
52 + if (
53 + check_ajax_referer('toggle_control') &&
54 + isset($_POST['enable']) &&
55 + isset($_POST['toggle_name']) &&
56 + current_user_can('manage_options')
57 + ) {
58 + $enable = sanitize_text_field(wp_unslash($_POST['enable']));
59 + $toggle_name = sanitize_text_field(wp_unslash($_POST['toggle_name']));
60 + update_option($toggle_name, $enable);
61 + }
62 + die();
63 + }
93 64
94 - update_option( 'tableberg_block_properties', $saved_properties );
95 - }
65 + public function add_settings_menu_data($data) {
66 + $data['assets'] = [
67 + 'logo' => trailingslashit($this->plugin_url) . 'includes/Admin/images/logos/menu-icon-colored.svg',
68 + 'logoTransparent' => trailingslashit($this->plugin_url) . 'includes/Admin/images/logos/menu-icon-colored-transparent.svg',
69 + ];
96 70
97 - die();
98 - }
99 - /**
100 - * Toggle control
101 - */
102 - private function update_toggle_control() {
103 - check_ajax_referer( 'toggle_control' );
71 + $data['individual_control'] = [
72 + 'data' => get_option('tableberg_individual_control', false),
73 + 'ajax' => [
74 + 'toggleControl' => [
75 + 'url' => admin_url('admin-ajax.php'),
76 + 'action' => 'tableberg_toggle_control',
77 + 'nonce' => wp_create_nonce('toggle_control'),
78 + ],
79 + ],
80 + ];
81 + $data['global_control'] = [
82 + 'data' => get_option('tableberg_global_control', false),
83 + 'ajax' => [
84 + 'toggleControl' => [
85 + 'url' => admin_url('admin-ajax.php'),
86 + 'action' => 'tableberg_toggle_control',
87 + 'nonce' => wp_create_nonce('toggle_control'),
88 + ],
89 + ],
90 + ];
91 + $data['block_properties'] = [
92 + 'data' => get_option('tableberg_block_properties', false),
93 + 'ajax' => [
94 + 'blockProperties' => [
95 + 'url' => admin_url('admin-ajax.php'),
96 + 'action' => 'tableberg_block_properties',
97 + 'nonce' => wp_create_nonce('block_properties'),
98 + ],
99 + ],
100 + ];
104 101
105 - if ( isset( $_POST['enable'] ) && isset( $_POST['toggle_name'] ) ) {
106 - $enable = sanitize_text_field( wp_unslash( $_POST['enable'] ) );
107 - $toggle_name = sanitize_text_field( wp_unslash( $_POST['toggle_name'] ) );
108 - update_option( $toggle_name, $enable );
109 - }
110 - die();
111 - }
112 - /**
113 - * Add data for admin settings menu frontend.
114 - *
115 - * @param array $data frontend data.
116 - *
117 - * @return array filtered frontend data
118 - */
119 - public function add_settings_menu_data( $data ) {
120 - $data['assets'] = array(
121 - 'logo' => trailingslashit( $this->plugin_url ) . 'includes/Admin/images/logos/menu-icon-colored.svg',
122 - );
102 + $has_pro_addon = defined('TABLEBERG_PRO_VERSION');
103 + global $tp_fs;
104 + if (isset($tp_fs)) {
105 + $data['misc'] = [
106 + 'pro_status' => $has_pro_addon
107 + || ($tp_fs->is__premium_only()
108 + && $tp_fs->can_use_premium_code()),
109 + ];
110 + } else {
111 + $data['misc'] = [
112 + 'pro_status' => $has_pro_addon,
113 + ];
114 + }
123 115
124 - $data['individual_control'] = array(
125 - 'data' => get_option( 'tableberg_individual_control', false ),
126 - 'ajax' => array(
127 - 'toggleControl' => array(
128 - 'url' => admin_url( 'admin-ajax.php' ),
129 - 'action' => 'toggle_control',
130 - 'nonce' => wp_create_nonce( 'toggle_control' ),
131 - ),
132 - ),
133 - );
134 - $data['global_control'] = array(
135 - 'data' => get_option( 'tableberg_global_control', false ),
136 - 'ajax' => array(
137 - 'toggleControl' => array(
138 - 'url' => admin_url( 'admin-ajax.php' ),
139 - 'action' => 'toggle_control',
140 - 'nonce' => wp_create_nonce( 'toggle_control' ),
141 - ),
142 - ),
143 - );
144 - $data['block_properties'] = array(
145 - 'data' => get_option( 'tableberg_block_properties', false ),
146 - 'ajax' => array(
147 - 'blockProperties' => array(
148 - 'url' => admin_url( 'admin-ajax.php' ),
149 - 'action' => 'block_properties',
150 - 'nonce' => wp_create_nonce( 'block_properties' ),
151 - ),
152 - ),
153 - );
116 + $data = array_merge($data, $this->welcome_page());
117 + return $data;
118 + }
154 119
155 - $data = array_merge( $data, Tableberg\Utils\Utils::welcome_page() );
156 - return $data;
157 - }
158 - /**
159 - * Enqueue admin scripts.
160 - */
161 - public function enqueue_admin_script() {
162 - $tableberg_assets = new Tableberg\Assets();
163 - $tableberg_assets->register_admin_assets();
164 - }
120 + public function enqueue_admin_script() {
121 + $tableberg_assets = new Tableberg\Assets();
122 + $tableberg_assets->register_admin_assets();
123 + }
165 124
166 - /**
167 - * Set template for main setting page
168 - *
169 - * @return void
170 - */
171 - public function main_menu_template_cb() {
172 - require_once $this->plugin_path . 'includes/Admin/templates/menus/main-menu.php';
173 - }
174 - /**
175 - * Register Setting Pages for the admin area.
176 - */
177 - public function register_admin_menus() {
125 + public static function welcome_page() {
126 + return [
127 + 'welcome' => [
128 + 'title' => 'Welcome to Tableberg!',
129 + 'content' => 'Elevate Your Content with Seamless Tables - The Ultimate WordPress Block Editor Plugin for Effortless Table Creation!',
130 + ],
131 + 'documentation' => [
132 + 'title' => 'Documentation',
133 + 'content' => 'Elevate your space with Tableberg: a sleek, modern table block for style and functionality. Crafted for timeless elegance and versatility.',
134 + ],
135 + 'support' => [
136 + 'title' => 'Support',
137 + 'content' => "Visit our Tableberg Support Page for quick solutions and assistance. We're here to ensure your Tableberg experience is seamless and satisfying.",
138 + ],
139 + 'community' => [
140 + 'title' => 'Join Community',
141 + 'content' => 'Join the vibrant Tableberg community. Connect, share, and discover endless possibilities together. Elevate your experience with like-minded enthusiasts now!',
142 + ],
143 + 'upgrade' => [
144 + 'title' => 'Upgrade to Tableberg PRO!',
145 + 'content' => 'Elevate Your Content with Seamless Tables - The Ultimate WordPress Block Editor Plugin for Effortless Table Creation!',
146 + ],
147 + ];
148 + }
178 149
179 - // assign global variables.
180 - global $menu_page;
181 - global $menu_page_slug;
150 + public function main_menu_template_cb() {
151 + ?>
152 +<div id="tableberg-admin-menu"></div>
153 +<?php
154 + }
182 155
183 - $menu_page_slug = 'tableberg-settings';
184 - $menu_page = add_menu_page(
185 - 'Tableberg Settings',
186 - 'Tableberg',
187 - 'manage_options',
188 - $menu_page_slug,
189 - array( $this, 'main_menu_template_cb' ),
190 - plugin_dir_url( __FILE__ ) . 'images/logos/menu-icon.svg'
191 - );
192 - }
156 + public function register_admin_menus() {
157 + global $menu_page;
158 + global $menu_page_slug;
159 +
160 + $menu_page_slug = 'tableberg-settings';
161 + $menu_page = add_menu_page(
162 + __('Tableberg Settings', 'tableberg'),
163 + __('Tableberg', 'tableberg'),
164 + 'manage_options',
165 + $menu_page_slug,
166 + [$this, 'main_menu_template_cb'],
167 + plugin_dir_url(__FILE__) . 'images/logos/menu-icon.svg'
168 + );
169 + }
170 +
171 + public static function tableberg_review_notice() {
172 + $install_date = get_option('tableberg_installDate');
173 + $display_date = date('Y-m-d h:i:s');
174 + $datetime1 = new \DateTime($install_date);
175 + $datetime2 = new \DateTime($display_date);
176 + $diff_interval = round(($datetime2->format('U') - $datetime1->format('U')) / (60 * 60 * 24));
177 +
178 + if ($diff_interval >= 21 && get_option('tableberg_review_notify') == 'no') {
179 + ?>
180 + <div class="tableberg-review-notice notice notice-info" style="position: relative; padding:0.5rem 1.5rem">
181 + <button type="button" class="notice-dismiss Tableberg_HideReview_Notice" style="position: absolute; top: 2px; right: 2px;">
182 + <span class="screen-reader-text"><?php esc_html_e('Dismiss this notice.', 'tableberg'); ?></span>
183 + </button>
184 + <p style="font-size: 14px; line-height: 2;padding-right:2rem">
185 + <?php
186 + echo wp_kses_post(__(
187 + 'Hello! Seems like you\'ve been using <strong>Tableberg</strong> for a while on your website. That\'s awesome!<br>If you can spare a few moments to rate it on wordpress.org, it would help us a lot (and boost my motivation).<br>Imtiaz Rayhan, developer of Tableberg',
188 + 'tableberg'
189 + ));
190 + ?>
191 + </p>
192 + <ul style="list-style-type: none; padding: 0;">
193 + <li>
194 + <a style="margin-right: 5px; margin-bottom: 5px;" class="button-primary" href="https://wordpress.org/support/plugin/tableberg/reviews/" target="_blank"><?php esc_html_e('Ok, I will gladly help!', 'tableberg'); ?></a>
195 + <a class="Tableberg_HideReview_Notice button" href="javascript:void(0);"><?php esc_html_e('No, thanks', 'tableberg'); ?></a>
196 + </li>
197 + </ul>
198 + </div>
199 + <script>
200 + jQuery(document).ready(function($) {
201 + $('.Tableberg_HideReview_Notice').click(function() {
202 + var data = {
203 + 'action': 'TablebergReviewNoticeHide'
204 + };
205 + $.ajax({
206 + url: "<?php echo esc_url(admin_url('admin-ajax.php')); ?>",
207 + type: "post",
208 + data: data,
209 + dataType: "json",
210 + async: true,
211 + success: function(notice_hide) {
212 + if (notice_hide == "success") {
213 + $('.tableberg-review-notice').slideUp('fast');
214 + }
215 + }
216 + });
217 + });
218 + });
219 + </script>
220 + <?php
221 + }
222 + }
223 +
224 +
225 + public function tableberg_hide_review_notify() {
226 + update_option('tableberg_review_notify', 'yes');
227 + echo wp_json_encode(['success']);
228 + exit;
229 + }
193 230 }
194 -