Automattic\WooCommerce\Internal\Admin\Notes

OnlineClothingStore::get_note()public staticWC 1.0

Get the note.

Метод класса: OnlineClothingStore{}

Хуков нет.

Возвращает

Note.

Использование

$result = OnlineClothingStore::get_note();

Код OnlineClothingStore::get_note() WC 8.7.0

public static function get_note() {
	// We want to show the note after two days.
	if ( ! self::is_wc_admin_active_in_date_range( 'week-1', 2 * DAY_IN_SECONDS ) ) {
		return;
	}

	$onboarding_profile = get_option( 'woocommerce_onboarding_profile', array() );

	// Confirm that $onboarding_profile is set.
	if ( empty( $onboarding_profile ) ) {
		return;
	}

	// Make sure that the person who filled out the OBW was not setting up
	// the store for their customer/client.
	if (
		! isset( $onboarding_profile['setup_client'] ) ||
		$onboarding_profile['setup_client']
	) {
		return;
	}

	// We need to show the notification when the industry is
	// fashion/apparel/accessories.
	if ( ! isset( $onboarding_profile['industry'] ) ) {
		return;
	}
	if ( ! self::is_in_fashion_industry( $onboarding_profile['industry'] ) ) {
		return;
	}

	$note = new Note();
	$note->set_title( __( 'Start your online clothing store', 'woocommerce' ) );
	$note->set_content( __( 'Starting a fashion website is exciting but it may seem overwhelming as well. In this article, we\'ll walk you through the setup process, teach you to create successful product listings, and show you how to market to your ideal audience.', 'woocommerce' ) );
	$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(
		'online-clothing-store',
		__( 'Learn more', 'woocommerce' ),
		'https://woo.com/posts/starting-an-online-clothing-store/?utm_source=inbox&utm_medium=product',
		Note::E_WC_ADMIN_NOTE_ACTIONED
	);
	return $note;
}