SILENT KILLERPanel

Current Path: > home > codekrsu > > cuddlebuds.lk > wp-content > plugins > woocommerce > src > Internal > Admin > Notes


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//cuddlebuds.lk/wp-content/plugins/woocommerce/src/Internal/Admin/Notes

NameTypeSizeLast ModifiedActions
CustomizeStoreWithBlocks.php File 2403 bytes April 10 2024 16:54:10.
CustomizingProductCatalog.php File 2250 bytes January 21 2025 18:53:44.
EUVATNumber.php File 1674 bytes April 10 2024 16:54:10.
EditProductsOnTheMove.php File 1716 bytes April 10 2024 16:54:10.
EmailImprovements.php File 2883 bytes June 02 2025 15:59:32.
FirstProduct.php File 2234 bytes January 21 2025 18:53:44.
GivingFeedbackNotes.php File 1538 bytes August 24 2022 02:07:06.
InstallJPAndWCSPlugins.php File 4690 bytes March 21 2023 20:45:06.
LaunchChecklist.php File 1720 bytes April 10 2024 16:54:10.
MagentoMigration.php File 2508 bytes April 10 2024 16:54:10.
ManageOrdersOnTheGo.php File 1577 bytes April 10 2024 16:54:10.
MarketingJetpack.php File 3765 bytes April 10 2024 16:54:10.
MigrateFromShopify.php File 2264 bytes April 10 2024 16:54:10.
MobileApp.php File 1421 bytes April 10 2024 16:54:10.
NewSalesRecord.php File 5380 bytes September 20 2022 22:53:36.
OnboardingPayments.php File 1780 bytes April 10 2024 16:54:10.
OnlineClothingStore.php File 2745 bytes April 10 2024 16:54:10.
OrderMilestones.php File 9366 bytes April 10 2024 16:54:10.
PaymentsMoreInfoNeeded.php File 2059 bytes December 18 2024 22:19:16.
PaymentsRemindMeLater.php File 1985 bytes December 18 2024 22:19:16.
PerformanceOnMobile.php File 1677 bytes April 10 2024 16:54:10.
PersonalizeStore.php File 1958 bytes March 21 2023 20:45:06.
RealTimeOrderAlerts.php File 1546 bytes April 10 2024 16:54:10.
SellingOnlineCourses.php File 2432 bytes April 10 2024 16:54:10.
TrackingOptIn.php File 3251 bytes January 21 2025 18:53:44.
UnsecuredReportFiles.php File 2174 bytes April 10 2024 16:54:10.
WooCommercePayments.php File 6400 bytes April 10 2024 16:54:10.
WooCommerceSubscriptions.php File 1922 bytes April 10 2024 16:54:10.
WooSubscriptionsNotes.php File 13564 bytes May 12 2025 21:07:28.

Reading File: /home/codekrsu//cuddlebuds.lk/wp-content/plugins/woocommerce/src/Internal/Admin/Notes/MobileApp.php

<?php
/**
 * WooCommerce Admin Mobile App Note Provider.
 *
 * Adds a note to the merchant's inbox showing the benefits of the mobile app.
 */

namespace Automattic\WooCommerce\Internal\Admin\Notes;

defined( 'ABSPATH' ) || exit;

use Automattic\WooCommerce\Admin\Notes\Note;
use Automattic\WooCommerce\Admin\Notes\NoteTraits;

/**
 * Mobile_App
 */
class MobileApp {
	/**
	 * Note traits.
	 */
	use NoteTraits;

	/**
	 * Name of the note for use in the database.
	 */
	const NOTE_NAME = 'wc-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::is_wc_admin_active_in_date_range( 'week-1', $two_days_in_seconds ) ) {
			return;
		}

		$content = __( 'Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.', 'woocommerce' );

		$note = new Note();
		$note->set_title( __( 'Install Woo mobile app', 'woocommerce' ) );
		$note->set_content( $content );
		$note->set_content_data( (object) array() );
		$note->set_type( Note::E_WC_ADMIN_NOTE_INFORMATIONAL );
		$note->set_name( self::NOTE_NAME );
		$note->set_source( 'woocommerce-admin' );
		$note->add_action( 'learn-more', __( 'Learn more', 'woocommerce' ), 'https://woocommerce.com/mobile/?utm_medium=product' );
		return $note;
	}
}

SILENT KILLER Tool