/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
woocommerce
/
packages
/
woocommerce-admin
/
src
/
Notes
/
Upload File
HOME
<?php /** * WooCommerce Admin Personalize Your Store Note Provider. * * Adds a note to the merchant's inbox prompting them to personalize their store. * * @package WooCommerce Admin */ namespace Automattic\WooCommerce\Admin\Notes; defined( 'ABSPATH' ) || exit; /** * WC_Admin_Notes_Personalize_Store */ class WC_Admin_Notes_Personalize_Store { /** * Note traits. */ use NoteTraits; /** * Name of the note for use in the database. */ const NOTE_NAME = 'wc-admin-personalize-store'; /** * Possibly add the note. */ public static function possibly_add_personalize_store_note() { // Only show the note to stores with homepage. $homepage_id = get_option( 'woocommerce_onboarding_homepage_post_id', false ); if ( ! $homepage_id ) { return; } // Show the note after task list is done. $is_task_list_complete = get_option( 'woocommerce_task_list_complete', false ); // We want to show the note after day 5. $five_days_in_seconds = 5 * DAY_IN_SECONDS; if ( ! self::wc_admin_active_for( $five_days_in_seconds ) && ! $is_task_list_complete ) { return; } $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( self::NOTE_NAME ); if ( ! empty( $note_ids ) ) { return; } $content = __( 'The homepage is one of the most important entry points in your store. When done right it can lead to higher conversions and engagement. Don\'t forget to personalize the homepage that we created for your store during the onboarding.', 'woocommerce' ); $note = new WC_Admin_Note(); $note->set_title( __( 'Personalize your store\'s homepage', 'woocommerce' ) ); $note->set_content( $content ); $note->set_content_data( (object) array() ); $note->set_type( WC_Admin_Note::E_WC_ADMIN_NOTE_INFORMATIONAL ); $note->set_icon( 'notice' ); $note->set_name( self::NOTE_NAME ); $note->set_source( 'woocommerce-admin' ); $note->add_action( 'personalize-homepage', __( 'Personalize homepage', 'woocommerce' ), admin_url( 'post.php?post=' . $homepage_id . '&action=edit' ), WC_Admin_Note::E_WC_ADMIN_NOTE_ACTIONED, true ); $note->save(); } }