Automattic\WooCommerce\Admin\Notes
StartDropshippingBusiness::get_note() public WC 1.0
Get the note.
{} Это метод класса: StartDropshippingBusiness{}
Хуков нет.
Возвращает
Note/null.
Использование
$result = StartDropshippingBusiness::get_note();
Код StartDropshippingBusiness::get_note() StartDropshippingBusiness::get note WC 5.0.0
public static function get_note() {
// We want to show the note after one day.
if ( ! self::wc_admin_active_for( 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 product number is 0 or the revenue is 'none' or 'up to 2500'.
if (
! isset( $onboarding_profile['product_count'] ) ||
! isset( $onboarding_profile['revenue'] ) ||
(
0 !== (int) $onboarding_profile['product_count'] &&
'none' !== $onboarding_profile['revenue'] &&
'up-to-2500' !== $onboarding_profile['revenue']
)
) {
return;
}
$note = new Note();
$note->set_title( __( 'Are you considering starting a dropshipping business?', 'woocommerce' ) );
$note->set_content( __( 'The ability to add inventory without having to deal with production, stocking, or fulfilling orders may seem like a dream. But is dropshipping worth it? Let’s explore some of the advantages and disadvantages to help you make the best decision for your business.', '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(
'dropshipping-business',
__( 'Learn more', 'woocommerce' ),
'https://woocommerce.com/posts/is-dropshipping-worth-it-pros-cons/?utm_source=inbox',
Note::E_WC_ADMIN_NOTE_ACTIONED,
true
);
return $note;
}