관리-도구
편집 파일: OnboardingEmailMarketing.php
<?php /** * Kkart Admin Onboarding Email Marketing Note Provider. * * Adds a note to sign up to email marketing after completing the profiler. */ namespace Automattic\Kkart\Admin\Notes; defined( 'ABSPATH' ) || exit; /** * Onboarding_Email_Marketing */ class OnboardingEmailMarketing { /** * Note traits. */ use NoteTraits; /** * Name of the note for use in the database. */ const NOTE_NAME = 'kkart-admin-onboarding-email-marketing'; /** * Get the note. * * @return Note */ public static function get_note() { $content = __( 'We\'re here for you - get tips, product updates and inspiration straight to your email box', 'kkart' ); $note = new Note(); $note->set_title( __( 'Tips, product updates, and inspiration', 'kkart' ) ); $note->set_content( $content ); $note->set_content_data( (object) array() ); $note->set_type( Note::E_KKART_ADMIN_NOTE_INFORMATIONAL ); $note->set_name( self::NOTE_NAME ); $note->set_source( 'kkart-admin' ); $note->add_action( 'yes-please', __( 'Yes please!', 'kkart' ), 'https://kkart.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&id=13860df971&SIGNUPPAGE=plugin' ); return $note; } }