Viewing file: NeedSomeInspiration.php (1.79 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php /** * Kkart Admin: Do you need some inspiration? * * Adds a note to ask the client if they need some inspiration. */
namespace Automattic\Kkart\Admin\Notes;
defined( 'ABSPATH' ) || exit;
/** * Need_Some_Inspiration. */ class NeedSomeInspiration { /** * Note traits. */ use NoteTraits;
/** * Name of the note for use in the database. */ const NOTE_NAME = 'kkart-admin-need-some-inspiration';
/** * Get the note. * * @return Note */ public static function get_note() { // We want to show the note after five days. if ( ! self::kkart_admin_active_for( 5 * DAY_IN_SECONDS ) ) { return; }
// We don't want to show the note after 30 days. if ( self::kkart_admin_active_for( 30 * DAY_IN_SECONDS ) ) { return; }
$onboarding_profile = get_option( 'kkart_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?', 'kkart' ) ); $note->set_content( __( 'Check some of our favorite customer stories from entrepreneurs, agencies, and developers in our global community.', 'kkart' ) ); $note->set_type( Note::E_KKART_ADMIN_NOTE_INFORMATIONAL ); $note->set_name( self::NOTE_NAME ); $note->set_content_data( (object) array() ); $note->set_source( 'kkart-admin' ); $note->add_action( 'need-some-inspiration', __( 'See success stories', 'kkart' ), 'https://kkart.com/success-stories/?utm_source=inbox', Note::E_KKART_ADMIN_NOTE_ACTIONED, true ); return $note; } }
|