Server IP : 213.32.127.20 / Your IP : 216.73.216.252 Web Server : Apache System : Linux ns3.servidorneptuno.com 4.18.0-553.16.1.lve.el8.x86_64 #1 SMP Tue Aug 13 17:45:03 UTC 2024 x86_64 User : atoqsfjh ( 1072) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /usr/local/sitepad/editor/site-data/plugins/kkart-pro/packages/kkart-admin/src/Notes/ |
Upload File : |
<?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; } }