????

Your IP : 3.142.237.38


Current Path : /usr/local/sitepad/editor/site-data/plugins/kkart-pro/packages/kkart-admin/src/Notes/
Upload File :
Current File : //usr/local/sitepad/editor/site-data/plugins/kkart-pro/packages/kkart-admin/src/Notes/Marketing.php

<?php
/**
 * Kkart Admin Marketing Note Provider.
 *
 * Adds notes to the merchant's inbox concerning the marketing dashboard.
 */

namespace Automattic\Kkart\Admin\Notes;

defined( 'ABSPATH' ) || exit;

/**
 * Marketing
 */
class Marketing {

	/**
	 * Note traits.
	 */
	use NoteTraits;

	/**
	 * Name of the note for use in the database.
	 */
	const NOTE_NAME = 'kkart-admin-marketing-intro';

	/**
	 * Get the note.
	 *
	 * @return Note
	 */
	public static function get_note() {
		$note = new Note();
		$note->set_title( __( 'Connect with your audience', 'kkart' ) );
		$note->set_content( __( 'Grow your customer base and increase your sales with marketing tools built for Kkart.', '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(
			'open-marketing-hub',
			__( 'Open marketing hub', 'kkart' ),
			admin_url( 'admin.php?page=kkart-admin&path=/marketing' ),
			Note::E_KKART_ADMIN_NOTE_ACTIONED
		);
		return $note;
	}
}