| 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 “Custom CSS” 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 |
$this->add_meta_box( 'default-style', sprintf( __( 'Default Styling %s', 'tablepress' ), '<span class="beta-label">' . ( tb_tp_fs()->is_free_plan() ? __( 'Premium', 'tablepress' ) : __( 'beta', 'tablepress' ) ) . '</span>' ), array( $this, 'postbox_default_style_customizer_screen' ), 'normal' ); |
| 57 |
$this->add_meta_box( 'frontend-options', __( 'Custom Styling', 'tablepress' ), array( $this, 'postbox_frontend_options' ), 'normal' ); |
| 58 |
} |
| 59 |
$this->add_meta_box( 'user-options', __( 'User Options', 'tablepress' ), array( $this, 'postbox_user_options' ), 'normal' ); |
| 60 |
$this->add_text_box( 'submit', array( $this, 'textbox_submit_button' ), 'submit' ); |
| 61 |
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 ) ) { |
| 62 |
$this->add_text_box( 'uninstall-tablepress', array( $this, 'textbox_uninstall_tablepress' ), 'submit' ); |
| 63 |
} |
| 64 |
} |
| 65 |
|
| 66 |
/** |
| 67 |
* Prints the screen head text. |
| 68 |
* |
| 69 |
* @since 1.0.0 |
| 70 |
* |
| 71 |
* @param array<string, mixed> $data Data for this screen. |
| 72 |
* @param array<string, mixed> $box Information about the text box. |
| 73 |
*/ |
| 74 |
public function textbox_head( array $data, array $box ): void { |
| 75 |
?> |
| 76 |
<p> |
| 77 |
<?php _e( 'TablePress has some options which affect the plugin’s behavior in different areas.', 'tablepress' ); ?> |
| 78 |
</p> |
| 79 |
<?php |
| 80 |
} |
| 81 |
|
| 82 |
/** |
| 83 |
* Prints the content of the "Default Style Customizer Screen" post meta box. |
| 84 |
* |
| 85 |
* @since 2.2.0 |
| 86 |
* |
| 87 |
* @param array<string, mixed> $data Data for this screen. |
| 88 |
* @param array<string, mixed> $box Information about the meta box. |
| 89 |
*/ |
| 90 |
public function postbox_default_style_customizer_screen( array $data, array $box ): void { |
| 91 |
if ( tb_tp_fs()->is_free_plan() ) : |
| 92 |
?> |
| 93 |
<div style="display:flex;max-width:800px;gap:20px;font-size:14px;"> |
| 94 |
<div> |
| 95 |
<p style="font-size:14px;"> |
| 96 |
<strong><?php _e( 'Did you know?', 'tablepress' ); ?></strong> |
| 97 |
<?php _e( 'The TablePress premium versions come with a table default style customizer!', 'tablepress' ); ?> |
| 98 |
<?php _e( 'Choose from multiple style variations or define your own color scheme in an easy-to-use visual tool!', 'tablepress' ); ?> |
| 99 |
<strong><?php _e( 'Change your tables’ default style without touching CSS code!', 'tablepress' ); ?></strong> |
| 100 |
</p> |
| 101 |
<div class="buttons" style="text-align:center;"> |
| 102 |
<a href="https://tablepress.org/modules/default-style-customizer/?utm_source=plugin&utm_medium=textlink&utm_content=options-screen" class="tablepress-button"> |
| 103 |
<span><?php _e( 'Find out more', 'tablepress' ); ?></span> |
| 104 |
<span class="dashicons dashicons-arrow-right-alt"></span> |
| 105 |
</a> |
| 106 |
</div> |
| 107 |
</div> |
| 108 |
<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> |
| 109 |
</div> |
| 110 |
<?php |
| 111 |
endif; |
| 112 |
} |
| 113 |
|
| 114 |
/** |
| 115 |
* Prints the content of the "Frontend Options" post meta box. |
| 116 |
* |
| 117 |
* @since 1.0.0 |
| 118 |
* |
| 119 |
* @param array<string, mixed> $data Data for this screen. |
| 120 |
* @param array<string, mixed> $box Information about the meta box. |
| 121 |
*/ |
| 122 |
public function postbox_frontend_options( array $data, array $box ): void { |
| 123 |
?> |
| 124 |
<table class="tablepress-postbox-table fixed"> |
| 125 |
<tr> |
| 126 |
<th class="column-1" scope="row"><label for="option-custom-css"><?php _e( 'Custom CSS', 'tablepress' ); ?></label>:</th> |
| 127 |
<td class="column-2"><label for="option-use-custom-css"><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 “Custom CSS” code to change the table styling:', 'tablepress' ); ?></label> |
| 128 |
</td> |
| 129 |
</tr> |
| 130 |
<tr> |
| 131 |
<td class="column-1"></td> |
| 132 |
<td class="column-2"> |
| 133 |
<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> |
| 134 |
<p class="description"> |
| 135 |
<?php |
| 136 |
printf( __( '“Custom CSS” (<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/' ); |
| 137 |
echo ' '; |
| 138 |
printf( __( 'You can get styling examples from the <a href="%s">FAQ</a>.', 'tablepress' ), 'https://tablepress.org/faq/' ); |
| 139 |
echo ' '; |
| 140 |
printf( __( 'Information on available CSS selectors can be found in the <a href="%s">Documentation</a>.', 'tablepress' ), 'https://tablepress.org/documentation/' ); |
| 141 |
echo ' '; |
| 142 |
_e( 'Please note that invalid CSS code will be stripped, if it can not be corrected automatically.', 'tablepress' ); |
| 143 |
?> |
| 144 |
</p> |
| 145 |
</td> |
| 146 |
</tr> |
| 147 |
</table> |
| 148 |
<?php |
| 149 |
} |
| 150 |
|
| 151 |
/** |
| 152 |
* Prints the content of the "User Options" post meta box. |
| 153 |
* |
| 154 |
* @since 1.0.0 |
| 155 |
* |
| 156 |
* @param array<string, mixed> $data Data for this screen. |
| 157 |
* @param array<string, mixed> $box Information about the meta box. |
| 158 |
*/ |
| 159 |
public function postbox_user_options( array $data, array $box ): void { |
| 160 |
// Get list of current admin menu entries. |
| 161 |
$entries = array(); |
| 162 |
foreach ( $GLOBALS['menu'] as $entry ) { |
| 163 |
if ( str_contains( $entry[2], '.php' ) ) { |
| 164 |
$entries[ $entry[2] ] = $entry[0]; |
| 165 |
} |
| 166 |
} |
| 167 |
|
| 168 |
// Remove <span> elements with notification bubbles (e.g. update or comment count). |
| 169 |
if ( isset( $entries['plugins.php'] ) ) { |
| 170 |
$entries['plugins.php'] = preg_replace( '/ <span.*span>/', '', $entries['plugins.php'] ); |
| 171 |
} |
| 172 |
if ( isset( $entries['edit-comments.php'] ) ) { |
| 173 |
$entries['edit-comments.php'] = preg_replace( '/ <span.*span>/', '', $entries['edit-comments.php'] ); |
| 174 |
} |
| 175 |
|
| 176 |
// Add separator and generic positions. |
| 177 |
$entries['-'] = '---'; |
| 178 |
$entries['top'] = __( 'Top-Level (top)', 'tablepress' ); |
| 179 |
$entries['middle'] = __( 'Top-Level (middle)', 'tablepress' ); |
| 180 |
$entries['bottom'] = __( 'Top-Level (bottom)', 'tablepress' ); |
| 181 |
|
| 182 |
$select_box = '<select id="option-admin-menu-parent-page" name="options[admin_menu_parent_page]">' . "\n"; |
| 183 |
foreach ( $entries as $page => $entry ) { |
| 184 |
$select_box .= '<option' . selected( $page, $data['user_options']['parent_page'], false ) . disabled( $page, '-', false ) . ' value="' . $page . '">' . $entry . "</option>\n"; |
| 185 |
} |
| 186 |
$select_box .= "</select>\n"; |
| 187 |
?> |
| 188 |
<table class="tablepress-postbox-table fixed"> |
| 189 |
<tr> |
| 190 |
<th class="column-1" scope="row"><label for="option-admin-menu-parent-page"><?php _e( 'Admin menu entry', 'tablepress' ); ?>:</label></th> |
| 191 |
<td class="column-2"><?php printf( __( 'TablePress shall be shown in this section of my admin menu: %s', 'tablepress' ), $select_box ); ?></td> |
| 192 |
</tr> |
| 193 |
</table> |
| 194 |
<?php |
| 195 |
} |
| 196 |
|
| 197 |
/** |
| 198 |
* Prints "Save Changes" button. |
| 199 |
* |
| 200 |
* @since 2.2.0 |
| 201 |
* |
| 202 |
* @param array<string, mixed> $data Data for this screen. |
| 203 |
* @param array<string, mixed> $box Information about the text box. |
| 204 |
*/ |
| 205 |
#[\Override] |
| 206 |
public function textbox_submit_button( array $data, array $box ): void { |
| 207 |
?> |
| 208 |
<p class="submit"> |
| 209 |
<input type="submit" id="tablepress-options-save-changes" class="button button-primary button-large 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' ) ); ?>" /> |
| 210 |
</p> |
| 211 |
<?php |
| 212 |
} |
| 213 |
|
| 214 |
/** |
| 215 |
* Prints the content of the "Admin Options" post meta box. |
| 216 |
* |
| 217 |
* @since 1.0.0 |
| 218 |
* |
| 219 |
* @param array<string, mixed> $data Data for this screen. |
| 220 |
* @param array<string, mixed> $box Information about the text box. |
| 221 |
*/ |
| 222 |
public function textbox_uninstall_tablepress( array $data, array $box ): void { |
| 223 |
?> |
| 224 |
<h1 style="margin-top:40px;"><?php _e( 'Uninstall TablePress', 'tablepress' ); ?></h1> |
| 225 |
<p> |
| 226 |
<?php |
| 227 |
echo __( 'Uninstalling <strong>will permanently delete</strong> all TablePress tables and options from the database.', 'tablepress' ) . '<br />' |
| 228 |
. __( '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 />' |
| 229 |
. __( 'You will manually need to remove the plugin’s files from the plugin folder afterwards.', 'tablepress' ) . '<br />' |
| 230 |
. __( 'Be very careful with this and only click the button if you know what you are doing!', 'tablepress' ); |
| 231 |
?> |
| 232 |
</p> |
| 233 |
<p><a href="<?php echo TablePress::url( array( 'action' => 'uninstall_tablepress' ), true, 'admin-post.php' ); ?>" id="uninstall-tablepress" class="button"><?php _e( 'Uninstall TablePress', 'tablepress' ); ?></a></p> |
| 234 |
<?php |
| 235 |
} |
| 236 |
|
| 237 |
} // class TablePress_Options_View |
| 238 |
|