7
7
8
8
namespace Automattic \Jetpack \Forms \ContactForm ;
9
9
10
+ use Automattic \Jetpack \Forms \Dashboard \Dashboard_View_Switch ;
10
11
use Automattic \Jetpack \Sync \Settings ;
11
12
use PHPMailer \PHPMailer \PHPMailer ;
12
13
use WP_Error ;
@@ -247,6 +248,29 @@ public static function style( $style ) {
247
248
public static function style_on () {
248
249
return self ::style ( true );
249
250
}
251
+ /**
252
+ * Adds a quick link to the admin bar for the contact form entries.
253
+ *
254
+ * @param \WP_Admin_Bar $admin_bar The admin bar object.
255
+ */
256
+ public static function add_quick_link_to_admin_bar ( \WP_Admin_Bar $ admin_bar ) {
257
+
258
+ if ( ! current_user_can ( 'edit_pages ' ) ) {
259
+ return ;
260
+ }
261
+
262
+ $ url = ( new Dashboard_View_Switch () )->get_forms_admin_url ();
263
+
264
+ $ admin_bar ->add_menu (
265
+ array (
266
+ 'id ' => 'jetpack-forms ' ,
267
+ 'parent ' => null ,
268
+ 'group ' => null ,
269
+ 'title ' => '<span class="dashicons dashicons-feedback ab-icon" style="top: 2px;"></span><span class="ab-label"> ' . esc_html__ ( 'Form Responses ' , 'jetpack-forms ' ) . '</span> ' ,
270
+ 'href ' => $ url ,
271
+ )
272
+ );
273
+ }
250
274
251
275
/**
252
276
* The contact-form shortcode processor
@@ -267,6 +291,10 @@ public static function parse( $attributes, $content ) {
267
291
$ attributes ['block_template_part ' ] = $ GLOBALS ['grunion_block_template_part_id ' ];
268
292
}
269
293
}
294
+
295
+ if ( is_singular () ) {
296
+ add_action ( 'admin_bar_menu ' , array ( __CLASS__ , 'add_quick_link_to_admin_bar ' ), 100 ); // We use priority 100 so that the link that is added gets added after the "Edit Page" link.
297
+ }
270
298
// Create a new Contact_Form object (this class)
271
299
$ form = new Contact_Form ( $ attributes , $ content );
272
300
0 commit comments