Skip to content

Commit 959e9e5

Browse files
authored
Forms: Add Feedback link to admin bar (#42474)
1 parent 8a146c3 commit 959e9e5

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Significance: minor
2+
Type: added
3+
4+
Forms: Add a quick link to the admin bar to form entries

projects/packages/forms/src/contact-form/class-contact-form.php

+28
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
namespace Automattic\Jetpack\Forms\ContactForm;
99

10+
use Automattic\Jetpack\Forms\Dashboard\Dashboard_View_Switch;
1011
use Automattic\Jetpack\Sync\Settings;
1112
use PHPMailer\PHPMailer\PHPMailer;
1213
use WP_Error;
@@ -247,6 +248,29 @@ public static function style( $style ) {
247248
public static function style_on() {
248249
return self::style( true );
249250
}
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+
}
250274

251275
/**
252276
* The contact-form shortcode processor
@@ -267,6 +291,10 @@ public static function parse( $attributes, $content ) {
267291
$attributes['block_template_part'] = $GLOBALS['grunion_block_template_part_id'];
268292
}
269293
}
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+
}
270298
// Create a new Contact_Form object (this class)
271299
$form = new Contact_Form( $attributes, $content );
272300

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Significance: minor
2+
Type: enhancement
3+
4+
Forms: Add quick link in the admin bar for form entries

0 commit comments

Comments
 (0)