PATH:
home
/
letacommog
/
laindinois
/
OLD
/
wp-content
/
plugins
/
woocommerce
/
packages
/
woocommerce-admin
/
src
/
Notes
<?php /** * WooCommerce Admin (Dashboard) Giving feedback notes provider. * * Adds notes to the merchant's inbox about giving feedback. * * @package WooCommerce Admin */ namespace Automattic\WooCommerce\Admin\Notes; defined( 'ABSPATH' ) || exit; /** * WC_Admin_Notes_Giving_Feedback_Notes */ class WC_Admin_Notes_Giving_Feedback_Notes { /** * Note traits. */ use NoteTraits; /** * Add notes for admin giving feedback. */ public static function add_notes_for_admin_giving_feedback() { self::possibly_add_admin_giving_feedback_note(); } /** * Possibly add a notice setting moved note. */ protected static function possibly_add_admin_giving_feedback_note() { $name = 'wc-admin-store-notice-giving-feedback'; $data_store = \WC_Data_Store::load( 'admin-note' ); // We already have this note? Then exit, we're done. $note_ids = $data_store->get_notes_with_name( $name ); if ( ! empty( $note_ids ) ) { return; } // We need to show Admin Giving feeback notification after 3 days of install. $three_days_in_seconds = 3 * DAY_IN_SECONDS; if ( ! self::wc_admin_active_for( $three_days_in_seconds ) ) { return; } // Otherwise, create our new note. $note = new WC_Admin_Note(); $note->set_title( __( 'Review your experience', 'woocommerce' ) ); $note->set_content( __( 'If you like WooCommerce Admin please leave us a 5 star rating. A huge thanks in advance!', 'woocommerce' ) ); $note->set_content_data( (object) array() ); $note->set_type( WC_Admin_Note::E_WC_ADMIN_NOTE_INFORMATIONAL ); $note->set_icon( 'info' ); $note->set_name( $name ); $note->set_source( 'woocommerce-admin' ); $note->add_action( 'share-feedback', __( 'Review', 'woocommerce' ), 'https://wordpress.org/support/plugin/woocommerce-admin/reviews/?rate=5#new-post' ); $note->save(); } }
[+]
..
[-] WC_Admin_Notes_Welcome_Message.php
[edit]
[-] WC_Admin_Note.php
[edit]
[-] WC_Admin_Notes_Deactivate_Plugin.php
[edit]
[-] NoteTraits.php
[edit]
[-] WC_Admin_Notes_Mobile_App.php
[edit]
[-] WC_Admin_Notes_New_Sales_Record.php
[edit]
[-] WC_Admin_Notes_Facebook_Extension.php
[edit]
[-] WC_Admin_Notes_Giving_Feedback_Notes.php
[edit]
[-] WC_Admin_Notes.php
[edit]
[-] WC_Admin_Notes_Historical_Data.php
[edit]
[-] WC_Admin_Notes_Onboarding.php
[edit]
[-] WC_Admin_Notes_Woo_Subscriptions_Notes.php
[edit]
[-] WC_Admin_Notes_Tracking_Opt_In.php
[edit]
[-] DataStore.php
[edit]
[-] WC_Admin_Notes_Add_First_Product.php
[edit]
[-] WC_Admin_Notes_Onboarding_Profiler.php
[edit]
[-] WC_Admin_Notes_Onboarding_Email_Marketing.php
[edit]
[-] WC_Admin_Notes_Order_Milestones.php
[edit]
[-] WC_Admin_Notes_Settings_Notes.php
[edit]