Automattic\WooCommerce\Admin\Notes
NeedSomeInspiration::get_note() public WC 1.0
Get the note.
{} Это метод класса: NeedSomeInspiration{}
Хуков нет.
Возвращает
Note.
Использование
$result = NeedSomeInspiration::get_note();
Код NeedSomeInspiration::get_note() NeedSomeInspiration::get note WC 5.0.0
public static function get_note() {
// We want to show the note after five days.
if ( ! self::wc_admin_active_for( 5 * DAY_IN_SECONDS ) ) {
return;
}
// We don't want to show the note after 30 days.
if ( self::wc_admin_active_for( 30 * 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;
}
$note = new Note();
$note->set_title( __( 'Do you need some inspiration?', 'woocommerce' ) );
$note->set_content( __( 'Check some of our favorite customer stories from entrepreneurs, agencies, and developers in our global community.', '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(
'need-some-inspiration',
__( 'See success stories', 'woocommerce' ),
'https://woocommerce.com/success-stories/?utm_source=inbox',
Note::E_WC_ADMIN_NOTE_ACTIONED,
true
);
return $note;
}