/
home
/
techb158
/
balacoffee.com
/
wp-content
/
plugins
/
woocommerce
/
src
/
Internal
/
Admin
/
Notes
/
/home/techb158/balacoffee.com/wp-content/plugins/woocommerce/src/Internal/Admin/Notes
mkdir
upload
Name
Size
Mode
Actions
CustomizeStoreWithBlocks.php
2403
0644
edit
dl
rm
CustomizingProductCatalog.php
2250
0644
edit
dl
rm
EditProductsOnTheMove.php
1716
0644
edit
dl
rm
EmailImprovements.php
2883
0644
edit
dl
rm
EUVATNumber.php
1674
0644
edit
dl
rm
FirstProduct.php
2234
0644
edit
dl
rm
GivingFeedbackNotes.php
1538
0644
edit
dl
rm
InstallJPAndWCSPlugins.php
4690
0644
edit
dl
rm
LaunchChecklist.php
1720
0644
edit
dl
rm
MagentoMigration.php
2508
0644
edit
dl
rm
ManageOrdersOnTheGo.php
1577
0644
edit
dl
rm
MarketingJetpack.php
3765
0644
edit
dl
rm
MigrateFromShopify.php
2264
0644
edit
dl
rm
MobileApp.php
1421
0644
edit
dl
rm
NewSalesRecord.php
5380
0644
edit
dl
rm
OnboardingPayments.php
1780
0644
edit
dl
rm
OnlineClothingStore.php
2745
0644
edit
dl
rm
OrderMilestones.php
9366
0644
edit
dl
rm
PaymentsMoreInfoNeeded.php
2189
0644
edit
dl
rm
PaymentsRemindMeLater.php
2109
0644
edit
dl
rm
PerformanceOnMobile.php
1677
0644
edit
dl
rm
PersonalizeStore.php
1958
0644
edit
dl
rm
RealTimeOrderAlerts.php
1546
0644
edit
dl
rm
ScheduledUpdatesPromotion.php
2812
0644
edit
dl
rm
SellingOnlineCourses.php
2432
0644
edit
dl
rm
TrackingOptIn.php
3251
0644
edit
dl
rm
UnsecuredReportFiles.php
2174
0644
edit
dl
rm
WooCommercePayments.php
6400
0644
edit
dl
rm
WooCommerceSubscriptions.php
1922
0644
edit
dl
rm
WooSubscriptionsNotes.php
13564
0644
edit
dl
rm
Edit:
/home/techb158/balacoffee.com/wp-content/plugins/woocommerce/src/Internal/Admin/Notes/MobileApp.php
(1421B)
<?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; } }
Save
cmd:
run