PluginProbe
TablePress – Tables in WordPress made easy / 3.2.1
TablePress – Tables in WordPress made easy v3.2.1
3.3.4 3.3.3 3.3.2 3.3.1 trunk 1.12 1.14 1.9.2 2.0.4 2.1.7 2.1.8 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3 2.3.1 2.3.2 2.4 2.4.1 2.4.2 2.4.3 2.4.4 All 44 releases
tablepress / views / view-options.php

view-options.php in TablePress – Tables in WordPress made easy 3.2.1, at views/view-options.php

241 lines 10.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Options View
4 *
5 * @package TablePress
6 * @subpackage Views
7 * @author Tobias Bäthge
8 * @since 1.0.0
9 */
10
11 // Prohibit direct script loading.
12 defined( 'ABSPATH' ) || die( 'No direct script access allowed!' );
13
14 /**
15 * Plugin Options View class
16 *
17 * @package TablePress
18 * @subpackage Views
19 * @author Tobias Bäthge
20 * @since 1.0.0
21 */
22 class TablePress_Options_View extends TablePress_View {
23
24 /**
25 * Set up the view with data and do things that are specific for this view.
26 *
27 * @since 1.0.0
28 *
29 * @param string $action Action for this view.
30 * @param array<string, mixed> $data Data for this view.
31 */
32 #[\Override]
33 public function setup( /* string */ $action, array $data ) /* : void */ {
34 // Don't use type hints in the method declaration to prevent PHP errors, as the method is inherited.
35
36 parent::setup( $action, $data );
37
38 $this->admin_page->enqueue_script( 'options' );
39
40 $this->process_action_messages( array(
41 'success_save' => __( 'Options saved successfully.', 'tablepress' ),
42 'success_save_error_custom_css' => __( 'Options saved successfully, but &#8220;Custom CSS&#8221; was not saved to file.', 'tablepress' ),
43 'error_save' => __( 'Error: Options could not be saved.', 'tablepress' ),
44 ) );
45
46 $this->add_text_box( 'head', array( $this, 'textbox_head' ), 'normal' );
47 if ( current_user_can( 'tablepress_edit_options' ) ) {
48 // Enqueue WordPress copy of CodeMirror, with CSS linting, etc., for the "Custom CSS" textarea, which is only shown to admins.
49 $codemirror_settings = wp_enqueue_code_editor( array( 'type' => 'text/css' ) );
50 if ( ! empty( $codemirror_settings ) ) {
51 // Load CSS adjustments for CodeMirror and the added vertical resizing.
52 $this->admin_page->enqueue_style( 'codemirror', array( 'code-editor' ) );
53 $this->admin_page->enqueue_script( 'codemirror' );
54 }
55
56 if ( ! TABLEPRESS_IS_PLAYGROUND_PREVIEW ) {
57 /* translators: %s: Premium badge HTML or empty string */
58 $this->add_meta_box( 'default-style', sprintf( __( 'Default Styling %s', 'tablepress' ), tb_tp_fs()->is_free_plan() ? '<span class="pill-label">' . __( 'Premium', 'tablepress' ) . '</span>' : '' ), array( $this, 'postbox_default_style_customizer_screen' ), 'normal' );
59 }
60 $this->add_meta_box( 'frontend-options', __( 'Custom Styling', 'tablepress' ), array( $this, 'postbox_frontend_options' ), 'normal' );
61 }
62 $this->add_meta_box( 'user-options', __( 'User Options', 'tablepress' ), array( $this, 'postbox_user_options' ), 'normal' );
63 $this->add_text_box( 'submit', array( $this, 'textbox_submit_button' ), 'submit' );
64 if ( current_user_can( 'deactivate_plugin', TABLEPRESS_BASENAME ) && current_user_can( 'tablepress_edit_options' ) && current_user_can( 'tablepress_delete_tables' ) && ! is_plugin_active_for_network( TABLEPRESS_BASENAME ) ) {
65 $this->add_text_box( 'uninstall-tablepress', array( $this, 'textbox_uninstall_tablepress' ), 'submit' );
66 }
67 }
68
69 /**
70 * Prints the screen head text.
71 *
72 * @since 1.0.0
73 *
74 * @param array<string, mixed> $data Data for this screen.
75 * @param array<string, mixed> $box Information about the text box.
76 */
77 public function textbox_head( array $data, array $box ): void {
78 ?>
79 <p>
80 <?php _e( 'TablePress has some options which affect the plugin&#8217;s behavior in different areas.', 'tablepress' ); ?>
81 </p>
82 <?php
83 }
84
85 /**
86 * Prints the content of the "Default Style Customizer Screen" post meta box.
87 *
88 * @since 2.2.0
89 *
90 * @param array<string, mixed> $data Data for this screen.
91 * @param array<string, mixed> $box Information about the meta box.
92 */
93 public function postbox_default_style_customizer_screen( array $data, array $box ): void {
94 if ( tb_tp_fs()->is_free_plan() ) :
95 ?>
96 <div style="display:flex;max-width:800px;gap:20px;font-size:14px;">
97 <div>
98 <p style="font-size:14px;">
99 <strong><?php _e( 'Did you know?', 'tablepress' ); ?></strong>
100 <?php _e( 'The TablePress premium versions come with a table default style customizer!', 'tablepress' ); ?>
101 <?php _e( 'Choose from multiple style variations or define your own color scheme in an easy-to-use visual tool!', 'tablepress' ); ?>
102 <strong><?php _e( 'Change your tables’ default style without touching CSS code!', 'tablepress' ); ?></strong>
103 </p>
104 <div class="buttons" style="text-align:center;">
105 <a href="https://tablepress.org/modules/default-style-customizer/?utm_source=plugin&utm_medium=textlink&utm_content=options-screen" class="tablepress-button">
106 <span><?php _e( 'Find out more', 'tablepress' ); ?></span>
107 <span class="dashicons dashicons-arrow-right-alt"></span>
108 </a>
109 </div>
110 </div>
111 <a href="https://tablepress.org/modules/default-style-customizer/?utm_source=plugin&utm_medium=textlink&utm_content=options-screen"><img src="<?php echo esc_url( plugins_url( 'admin/img/default-style-customizer.png', TABLEPRESS__FILE__ ) ); ?>" width="305" height="172" alt="<?php esc_attr_e( 'Screenshot of the Default Style Customizer that is part of the TablePress premium versions.', 'tablepress' ); ?>"></a>
112 </div>
113 <?php
114 endif;
115 }
116
117 /**
118 * Prints the content of the "Frontend Options" post meta box.
119 *
120 * @since 1.0.0
121 *
122 * @param array<string, mixed> $data Data for this screen.
123 * @param array<string, mixed> $box Information about the meta box.
124 */
125 public function postbox_frontend_options( array $data, array $box ): void {
126 ?>
127 <table class="tablepress-postbox-table fixed">
128 <tr>
129 <th class="column-1" scope="row"><label for="option-custom-css"><?php _e( 'Custom CSS', 'tablepress' ); ?></label>:</th>
130 <td class="column-2"><label><input type="checkbox" id="option-use-custom-css" name="options[use_custom_css]" value="true"<?php checked( $data['frontend_options']['use_custom_css'] ); ?>> <?php _e( 'Load this &#8220;Custom CSS&#8221; code to change the table styling:', 'tablepress' ); ?></label>
131 </td>
132 </tr>
133 <tr>
134 <td class="column-1"></td>
135 <td class="column-2">
136 <textarea name="options[custom_css]" id="option-custom-css" class="large-text" rows="8" autocomplete="off"><?php echo esc_textarea( $data['frontend_options']['custom_css'] ); ?></textarea>
137 <p class="description">
138 <?php
139 printf( __( '&#8220;Custom CSS&#8221; (<a href="%s">Cascading Style Sheets</a>) can be used to change the styling or layout of a table.', 'tablepress' ), 'https://www.htmldog.com/guides/css/beginner/' );
140 echo ' ';
141 printf( __( 'You can get styling examples from the <a href="%s">FAQ</a>.', 'tablepress' ), 'https://tablepress.org/faq/' );
142 echo ' ';
143 printf( __( 'Information on available CSS selectors can be found in the <a href="%s">Documentation</a>.', 'tablepress' ), 'https://tablepress.org/documentation/' );
144 echo ' ';
145 _e( 'Please note that invalid CSS code will be stripped, if it can not be corrected automatically.', 'tablepress' );
146 ?>
147 </p>
148 </td>
149 </tr>
150 </table>
151 <?php
152 }
153
154 /**
155 * Prints the content of the "User Options" post meta box.
156 *
157 * @since 1.0.0
158 *
159 * @param array<string, mixed> $data Data for this screen.
160 * @param array<string, mixed> $box Information about the meta box.
161 */
162 public function postbox_user_options( array $data, array $box ): void {
163 // Get list of current admin menu entries.
164 $entries = array();
165 foreach ( $GLOBALS['menu'] as $entry ) {
166 if ( str_contains( $entry[2], '.php' ) ) {
167 $entries[ $entry[2] ] = $entry[0];
168 }
169 }
170
171 // Remove <span> elements with notification bubbles (e.g. update or comment count).
172 if ( isset( $entries['plugins.php'] ) ) {
173 $entries['plugins.php'] = preg_replace( '/ <span.*span>/', '', $entries['plugins.php'] );
174 }
175 if ( isset( $entries['edit-comments.php'] ) ) {
176 $entries['edit-comments.php'] = preg_replace( '/ <span.*span>/', '', $entries['edit-comments.php'] );
177 }
178
179 // Add separator and generic positions.
180 $entries['-'] = '---';
181 $entries['top'] = __( 'Top-Level (top)', 'tablepress' );
182 $entries['middle'] = __( 'Top-Level (middle)', 'tablepress' );
183 $entries['bottom'] = __( 'Top-Level (bottom)', 'tablepress' );
184
185 $select_box = '<select id="option-admin-menu-parent-page" name="options[admin_menu_parent_page]">' . "\n";
186 foreach ( $entries as $page => $entry ) {
187 $select_box .= '<option' . selected( $page, $data['user_options']['parent_page'], false ) . disabled( $page, '-', false ) . ' value="' . $page . '">' . $entry . "</option>\n";
188 }
189 $select_box .= "</select>\n";
190 ?>
191 <table class="tablepress-postbox-table fixed">
192 <tr>
193 <th class="column-1" scope="row"><label for="option-admin-menu-parent-page"><?php _e( 'Admin menu entry', 'tablepress' ); ?>:</label></th>
194 <td class="column-2"><?php printf( __( 'TablePress shall be shown in this section of my admin menu: %s', 'tablepress' ), $select_box ); ?></td>
195 </tr>
196 </table>
197 <?php
198 }
199
200 /**
201 * Prints "Save Changes" button.
202 *
203 * @since 2.2.0
204 *
205 * @param array<string, mixed> $data Data for this screen.
206 * @param array<string, mixed> $box Information about the text box.
207 */
208 #[\Override]
209 public function textbox_submit_button( array $data, array $box ): void {
210 ?>
211 <p class="submit">
212 <input type="submit" id="tablepress-options-save-changes" class="components-button is-primary button-save-changes" value="<?php esc_attr_e( 'Save Changes', 'tablepress' ); ?>" data-shortcut="<?php echo esc_attr( _x( '%1$sS', 'keyboard shortcut for Save Changes', 'tablepress' ) ); ?>">
213 </p>
214 <?php
215 }
216
217 /**
218 * Prints the content of the "Admin Options" post meta box.
219 *
220 * @since 1.0.0
221 *
222 * @param array<string, mixed> $data Data for this screen.
223 * @param array<string, mixed> $box Information about the text box.
224 */
225 public function textbox_uninstall_tablepress( array $data, array $box ): void {
226 ?>
227 <h1 style="margin-top:40px;"><?php _e( 'Uninstall TablePress', 'tablepress' ); ?></h1>
228 <p>
229 <?php
230 echo __( 'Uninstalling <strong>will permanently delete</strong> all TablePress tables and options from the database.', 'tablepress' ) . '<br>'
231 . __( 'It is recommended that you create a backup of the tables (by exporting the tables in the JSON format), in case you later change your mind.', 'tablepress' ) . '<br>'
232 . __( 'You will manually need to remove the plugin&#8217;s files from the plugin folder afterwards.', 'tablepress' ) . '<br>'
233 . __( 'Be very careful with this and only click the button if you know what you are doing!', 'tablepress' );
234 ?>
235 </p>
236 <p><a href="<?php echo TablePress::url( array( 'action' => 'uninstall_tablepress' ), true, 'admin-post.php' ); ?>" id="uninstall-tablepress" class="components-button is-secondary is-destructive"><?php _e( 'Uninstall TablePress', 'tablepress' ); ?></a></p>
237 <?php
238 }
239
240 } // class TablePress_Options_View
241