* fix: remove Historical Analytics Data notice woocommerce/woocommerce-admin#5286

* fix: removed reference for HistoricalData class elsewhere

* Remove Historical Data Alert facade (https://github.com/woocommerce/woocommerce-admin/pull/5725)
This commit is contained in:
Ilyas Foo 2020-12-14 18:02:40 +08:00 committed by GitHub
parent 871bd1369e
commit 1ac787f568
4 changed files with 1 additions and 124 deletions

View File

@ -8,7 +8,6 @@ namespace Automattic\WooCommerce\Admin;
defined( 'ABSPATH' ) || exit;
use \Automattic\WooCommerce\Admin\Notes\Notes;
use \Automattic\WooCommerce\Admin\Notes\HistoricalData;
use \Automattic\WooCommerce\Admin\Notes\OrderMilestones;
use \Automattic\WooCommerce\Admin\Notes\WooSubscriptionsNotes;
use \Automattic\WooCommerce\Admin\Notes\TrackingOptIn;
@ -183,7 +182,6 @@ class FeaturePlugin {
// Admin note providers.
// @todo These should be bundled in the features/ folder, but loading them from there currently has a load order issue.
new WooSubscriptionsNotes();
new HistoricalData();
new OrderMilestones();
new TrackingOptIn();
new WooCommercePayments();

View File

@ -9,7 +9,6 @@ defined( 'ABSPATH' ) || exit;
use Automattic\WooCommerce\Admin\API\Reports\Cache;
use \Automattic\WooCommerce\Admin\Notes\Notes;
use \Automattic\WooCommerce\Admin\Notes\HistoricalData;
/**
* Install Class.
@ -171,7 +170,6 @@ class Install {
self::create_tables();
self::create_events();
self::delete_obsolete_notes();
self::create_notes();
self::maybe_update_db_version();
delete_transient( 'wc_admin_installing' );
@ -479,6 +477,7 @@ class Install {
'wc-admin-store-notice-giving-feedback',
'wc-admin-learn-more-about-product-settings',
'wc-admin-onboarding-profiler-reminder',
'wc-admin-historical-data',
);
$additional_obsolete_notes_names = apply_filters(
@ -496,13 +495,6 @@ class Install {
Notes::delete_notes_with_name( $obsolete_notes_names );
}
/**
* Create notes.
*/
protected static function create_notes() {
HistoricalData::possibly_add_note();
}
/**
* Drop WooCommerce Admin tables.
*

View File

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

View File

@ -1,92 +0,0 @@
<?php
/**
* WooCommerce Admin: Historical Analytics Data Note.
*
* Adds a notes to store alerts area concerning the historial analytics data tool.
*/
namespace Automattic\WooCommerce\Admin\Notes;
defined( 'ABSPATH' ) || exit;
use \Automattic\WooCommerce\Admin\Install;
/**
* Historical_Data.
*/
class HistoricalData {
/**
* Note traits.
*/
use NoteTraits;
/**
* Name of the note for use in the database.
*/
const NOTE_NAME = 'wc-admin-historical-data';
/**
* Attach hooks.
*/
public function __construct() {
add_action( 'woocommerce_analytics_regenerate_init', array( $this, 'update_status_to_actioned' ) );
}
/**
* Update status of note to actioned on data import trigger.
*/
public static function update_status_to_actioned() {
$data_store = \WC_Data_Store::load( 'admin-note' );
$note_ids = $data_store->get_notes_with_name( self::NOTE_NAME );
if ( empty( $note_ids ) ) {
return;
}
$note = Notes::get_note( $note_ids[0] );
if ( false === $note ) {
return;
}
$note->set_status( 'actioned' );
$note->save();
}
/**
* Get the note.
*
* @return Note
*/
public static function get_note() {
$is_upgrading = get_option( Install::VERSION_OPTION );
if ( $is_upgrading ) {
return;
}
// Only add this note if we don't have any orders.
$orders = wc_get_orders(
array(
'limit' => 1,
)
);
if ( count( $orders ) < 1 ) {
return;
}
$note = new Note();
$note->set_title( __( 'WooCommerce Admin: Historical Analytics Data', 'woocommerce-admin' ) );
$note->set_content( __( 'To view your historical analytics data, you must process your existing orders and customers.', 'woocommerce-admin' ) );
$note->set_type( Note::E_WC_ADMIN_NOTE_UPDATE );
$note->set_name( self::NOTE_NAME );
$note->set_content_data( (object) array() );
$note->set_source( 'woocommerce-admin' );
// @todo Add remind me later option. See https://github.com/woocommerce/woocommerce-admin/issues/1756.
$note->add_action(
'get-started',
__( 'Get Started', 'woocommerce-admin' ),
'?page=wc-admin&path=/analytics/settings&import=true',
'actioned',
true
);
return $note;
}
}