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 Mobile App Note Provider. * * Adds a note to the merchant's inbox showing the benefits of the mobile app. */ namespace Automattic\Kkart\Admin\Notes; defined( 'ABSPATH' ) || exit; /** * Mobile_App */ class MobileApp { /** * Note traits. */ use NoteTraits; /** * Name of the note for use in the database. */ const NOTE_NAME = 'kkart-admin-mobile-app'; /** * Get the note. * * @return Note */ public static function get_note() { // We want to show the mobile app note after day 2. $two_days_in_seconds = 2 * DAY_IN_SECONDS; if ( ! self::kkart_admin_active_for( $two_days_in_seconds ) ) { return; } $content = __( 'Install the Kkart mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.', 'kkart' ); $note = new Note(); $note->set_title( __( 'Install Woo mobile app', '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( 'learn-more', __( 'Learn more', 'kkart' ), 'https://kkart.com/mobile/' ); return $note; } }