PluginProbe
Smart Grid-Layout Design for Contact Form 7 / 4.5
Smart Grid-Layout Design for Contact Form 7 v4.5
4.18.0 4.17.0 3.2.0 3.2.1 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 4.0.0 4.0.1 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.10 4.11 4.12 4.13 4.14 All 119 releases
← All changes | admin/partials/cf7-admin-editor-display.php +2 -1 3.3.24.5 View file →
@@ -28,8 +28,9 @@
28 28 <input type="hidden" id="active-tab" name="active-tab" value="<?php echo isset( $_GET['active-tab'] ) ? (int) $_GET['active-tab'] : '0'; ?>" />
29 29 <?php wp_nonce_field( 'wpcf7-save-contact-form_' . $post_id, '_wpcf7nonce' ); ?>
30 30
31 31 <div id="contact-form-editor">
32 + <div class="loading-screen"><h2><?= __('Loading form editor ...','cf7-grid-layout')?><span class="spinner"></span></h2></div>
32 33 <div class="keyboard-interaction"><?php echo sprintf( esc_html( __cf7sg( '%s keys switch panels') ), '<span class="dashicons dashicons-leftright"></span>' ); ?></div>
33 34
34 35 <?php
35 36
@@ -62,9 +63,9 @@
62 63 'callback' => 'wpcf7_editor_panel_additional_settings' );
63 64 }
64 65 /**
65 66 * filter to add/remove panels from the cf7 post editor
66 - * @param array $panel aarray of panels presented as tabs in the editor, $id => array( 'title' => $panel_title, 'callback' => $callback_function). The $callback_function must be a valid function to echo the panel html script.
67 + * @param Array $panel array of panels presented as tabs in the editor, $id => array( 'title' => $panel_title, 'callback' => $callback_function). The $callback_function must be a valid function to echo the panel html script.
67 68 */
68 69 $panels = apply_filters( 'wpcf7_editor_panels', $panels );
69 70
70 71 foreach ( $panels as $id => $panel ) {