* Remove HomeScreenFeedback

* Add wc-admin-home-screen-feedback to the obsolete_notes list
This commit is contained in:
Moon 2021-01-06 22:39:22 -08:00 committed by GitHub
parent 285aaa9b44
commit 00289ddb91
5 changed files with 1 additions and 107 deletions

View File

@ -29,7 +29,6 @@ use \Automattic\WooCommerce\Admin\RemoteInboxNotifications\DataSourcePoller;
use \Automattic\WooCommerce\Admin\RemoteInboxNotifications\RemoteInboxNotificationsEngine; use \Automattic\WooCommerce\Admin\RemoteInboxNotifications\RemoteInboxNotificationsEngine;
use \Automattic\WooCommerce\Admin\Loader; use \Automattic\WooCommerce\Admin\Loader;
use \Automattic\WooCommerce\Admin\Notes\InsightFirstSale; use \Automattic\WooCommerce\Admin\Notes\InsightFirstSale;
use \Automattic\WooCommerce\Admin\Notes\HomeScreenFeedback;
use \Automattic\WooCommerce\Admin\Notes\NeedSomeInspiration; use \Automattic\WooCommerce\Admin\Notes\NeedSomeInspiration;
use \Automattic\WooCommerce\Admin\Notes\OnlineClothingStore; use \Automattic\WooCommerce\Admin\Notes\OnlineClothingStore;
use \Automattic\WooCommerce\Admin\Notes\FirstProduct; use \Automattic\WooCommerce\Admin\Notes\FirstProduct;
@ -101,7 +100,6 @@ class Events {
MigrateFromShopify::possibly_add_note(); MigrateFromShopify::possibly_add_note();
InsightFirstSale::possibly_add_note(); InsightFirstSale::possibly_add_note();
LaunchChecklist::possibly_add_note(); LaunchChecklist::possibly_add_note();
HomeScreenFeedback::possibly_add_note();
NeedSomeInspiration::possibly_add_note(); NeedSomeInspiration::possibly_add_note();
OnlineClothingStore::possibly_add_note(); OnlineClothingStore::possibly_add_note();
FirstProduct::possibly_add_note(); FirstProduct::possibly_add_note();

View File

@ -17,7 +17,6 @@ use \Automattic\WooCommerce\Admin\Notes\InstallJPAndWCSPlugins;
use \Automattic\WooCommerce\Admin\Notes\DrawAttention; use \Automattic\WooCommerce\Admin\Notes\DrawAttention;
use \Automattic\WooCommerce\Admin\Notes\CouponPageMoved; use \Automattic\WooCommerce\Admin\Notes\CouponPageMoved;
use \Automattic\WooCommerce\Admin\RemoteInboxNotifications\RemoteInboxNotificationsEngine; use \Automattic\WooCommerce\Admin\RemoteInboxNotifications\RemoteInboxNotificationsEngine;
use \Automattic\WooCommerce\Admin\Notes\HomeScreenFeedback;
use \Automattic\WooCommerce\Admin\Notes\SetUpAdditionalPaymentTypes; use \Automattic\WooCommerce\Admin\Notes\SetUpAdditionalPaymentTypes;
use \Automattic\WooCommerce\Admin\Notes\TestCheckout; use \Automattic\WooCommerce\Admin\Notes\TestCheckout;
use \Automattic\WooCommerce\Admin\Notes\SellingOnlineCourses; use \Automattic\WooCommerce\Admin\Notes\SellingOnlineCourses;
@ -188,7 +187,6 @@ class FeaturePlugin {
new WooCommercePayments(); new WooCommercePayments();
new InstallJPAndWCSPlugins(); new InstallJPAndWCSPlugins();
new DrawAttention(); new DrawAttention();
new HomeScreenFeedback();
new SetUpAdditionalPaymentTypes(); new SetUpAdditionalPaymentTypes();
new TestCheckout(); new TestCheckout();
new SellingOnlineCourses(); new SellingOnlineCourses();

View File

@ -479,6 +479,7 @@ class Install {
'wc-admin-onboarding-profiler-reminder', 'wc-admin-onboarding-profiler-reminder',
'wc-admin-historical-data', 'wc-admin-historical-data',
'wc-admin-review-shipping-settings', 'wc-admin-review-shipping-settings',
'wc-admin-home-screen-feedback',
); );
$additional_obsolete_notes_names = apply_filters( $additional_obsolete_notes_names = apply_filters(

View File

@ -285,27 +285,6 @@ class WC_Admin_Notes_Giving_Feedback_Notes extends DeprecatedClassFacade {
protected static $deprecated_in_version = '1.7.0'; protected static $deprecated_in_version = '1.7.0';
} }
/**
* WC_Admin_Notes_Home_Screen_Feedback.
*
* @deprecated since 1.7.0, use HomeScreenFeedback
*/
class WC_Admin_Notes_Home_Screen_Feedback extends DeprecatedClassFacade {
/**
* The name of the non-deprecated class that this facade covers.
*
* @var string
*/
protected static $facade_over_classname = 'Automattic\WooCommerce\Admin\Notes\HomeScreenFeedback';
/**
* The version that this class was deprecated in.
*
* @var string
*/
protected static $deprecated_in_version = '1.7.0';
}
/** /**
* WC_Admin_Notes_Insight_First_Sale. * WC_Admin_Notes_Insight_First_Sale.
* *

View File

@ -1,82 +0,0 @@
<?php
/**
* WooCommerce Admin: Help us improve the WooCommerce Home screen
*
* Adds a note to ask the client to provide feedback about the home screen.
*/
namespace Automattic\WooCommerce\Admin\Notes;
defined( 'ABSPATH' ) || exit;
/**
* Home_Screen_Feedback.
*/
class HomeScreenFeedback {
/**
* Note traits.
*/
use NoteTraits;
/**
* Name of the note for use in the database.
*/
const NOTE_NAME = 'wc-admin-home-screen-feedback';
const HOMESCREEN_ACCESSED_OPTION_NAME = 'wc_admin_note_home_screen_feedback_homescreen_accessed';
/**
* Constructor.
*/
public function __construct() {
add_action( 'init', array( $this, 'on_init' ) );
}
/**
* Watch for the homescreen being accessed (by checking to see if it's
* enabled) and set a time stamp for when it is.
*/
public function on_init() {
// If the accessed option is already set, return early.
if ( false !== get_option( self::HOMESCREEN_ACCESSED_OPTION_NAME ) ) {
return;
}
// Set the current time stamp, as the home screen is the default
// experience.
update_option( self::HOMESCREEN_ACCESSED_OPTION_NAME, time() );
}
/**
* Get the note.
*
* @return Note
*/
public static function get_note() {
// Homescreen first accessed at least 12 days ago.
$homescreen_accessed_time = get_option(
self::HOMESCREEN_ACCESSED_OPTION_NAME
);
if ( ! $homescreen_accessed_time ) {
return;
}
if ( time() - $homescreen_accessed_time < 12 * DAY_IN_SECONDS ) {
return;
}
$note = new Note();
$note->set_title( __( 'Help us improve the WooCommerce Home screen', 'woocommerce-admin' ) );
$note->set_content( __( 'We\'d love your input to shape the future of the WooCommerce Home screen together. Feel free to share any feedback, ideas or suggestions that you have.', 'woocommerce-admin' ) );
$note->set_type( Note::E_WC_ADMIN_NOTE_INFORMATIONAL );
$note->set_name( self::NOTE_NAME );
$note->set_content_data( (object) array() );
$note->set_source( 'woocommerce-admin' );
$note->add_action(
'home-screen-feedback-share-feedback',
__( 'Share feedback', 'woocommerce-admin' ),
'https://automattic.survey.fm/home-screen-survey'
);
return $note;
}
}