class-wc-payments-notes-qualitative-feedback.php
1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
/**
* Set up refund policy note for WooCommerce inbox.
*
* @package WooCommerce\Payments\Admin
*/
use Automattic\WooCommerce\Admin\Notes\Note;
use Automattic\WooCommerce\Admin\Notes\NoteTraits;
defined( 'ABSPATH' ) || exit;
/**
* Class WC_Payments_Notes_Set_Up_Refund_Policy
*/
class WC_Payments_Notes_Qualitative_Feedback {
use NoteTraits;
/**
* Name of the note for use in the database.
*/
const NOTE_NAME = 'wc-payments-notes-qualitative-feedback';
/**
* Name of the note for use in the database.
*/
const NOTE_DOCUMENTATION_URL = 'http://automattic.survey.fm/wc-pay-existing';
/**
* Get the note.
*/
public static function get_note() {
global $wpdb;
// Store must be at least 60 days old.
if ( ! self::wc_admin_active_for( 60 * DAY_IN_SECONDS ) ) {
return;
}
// We should have at least one transaction.
$token_count = $wpdb->get_var( "select count(*) from {$wpdb->prefix}woocommerce_payment_tokens" );
if ( 0 === (int) $token_count ) {
return;
}
$note = new Note();
$note->set_title( __( 'Help us make improvements to WooCommerce Payments', 'woocommerce-payments' ) );
$note->set_content( __( 'Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.', 'woocommerce-payments' ) );
$note->set_content_data( (object) [] );
$note->set_type( Note::E_WC_ADMIN_NOTE_INFORMATIONAL );
$note->set_name( self::NOTE_NAME );
$note->set_source( 'woocommerce-payments' );
$note->add_action(
self::NOTE_NAME,
__( 'Share feedback', 'woocommerce-payments' ),
self::NOTE_DOCUMENTATION_URL,
'unactioned',
true
);
return $note;
}
}