PATH:
home
/
letacommog
/
broderie
/
wp-content
/
plugins
/
woocommerce
/
packages
/
woocommerce-admin
/
src
/
Notes
<?php /** * WooCommerce Admin Review Shipping Settings Note Provider. * * Adds an admin note prompting the admin to review their shipping settings. * * @package WooCommerce Admin */ namespace Automattic\WooCommerce\Admin\Notes; defined( 'ABSPATH' ) || exit; /** * Review_Shipping_Settings */ class ReviewShippingSettings { use NoteTraits; const NOTE_NAME = 'wc-admin-review-shipping-settings'; /** * Get the note. * * @return Note */ public static function get_note() { $note = new Note(); $content_lines = array( __( "Based on the information that you provided we've configured some shipping rates and options for your store:<br/><br/>", 'woocommerce' ), __( 'Domestic orders: free shipping<br/>', 'woocommerce' ), __( 'International orders: disabled<br/>', 'woocommerce' ), ); if ( 'US' === WC()->countries->get_base_country() ) { array_push( $content_lines, __( 'Label printing: enabled', 'woocommerce' ) ); } $note->set_name( self::NOTE_NAME ); $note->set_source( 'woocommerce-admin' ); $note->set_title( __( 'Review your shipping settings', 'woocommerce' ) ); $note->set_content( implode( '', $content_lines ) ); $note->set_content_data( (object) array() ); $note->set_type( Note::E_WC_ADMIN_NOTE_INFORMATIONAL ); $note->add_action( 'edit-shipping-settings', __( 'Edit shipping settings', 'woocommerce' ), admin_url( 'admin.php?page=wc-settings&tab=shipping' ), Note::E_WC_ADMIN_NOTE_UNACTIONED, true ); return $note; } }
[+]
..
[-] LaunchChecklist.php
[edit]
[-] SetUpAdditionalPaymentTypes.php
[edit]
[-] CouponPageMoved.php
[edit]
[-] FirstProduct.php
[edit]
[-] OrderMilestones.php
[edit]
[-] ChooseNiche.php
[edit]
[-] EditProductsOnTheMove.php
[edit]
[-] NoteTraits.php
[edit]
[-] TestCheckout.php
[edit]
[-] WooSubscriptionsNotes.php
[edit]
[-] CustomizeStoreWithBlocks.php
[edit]
[-] ReviewShippingSettings.php
[edit]
[-] EUVATNumber.php
[edit]
[-] MigrateFromShopify.php
[edit]
[-] TrackingOptIn.php
[edit]
[-] HistoricalData.php
[edit]
[-] ConfirmTaxSettings.php
[edit]
[-] PerformanceOnMobile.php
[edit]
[-] GoogleAdsAndMarketing.php
[edit]
[-] RealTimeOrderAlerts.php
[edit]
[-] InstallJPAndWCSPlugins.php
[edit]
[-] OnboardingPayments.php
[edit]
[-] InsightFirstSale.php
[edit]
[-] GivingFeedbackNotes.php
[edit]
[-] ManageOrdersOnTheGo.php
[edit]
[-] NewSalesRecord.php
[edit]
[-] HomeScreenFeedback.php
[edit]
[-] NavigationFeedbackFollowUp.php
[edit]
[-] Note.php
[edit]
[-] NavigationFeedback.php
[edit]
[-] DataStore.php
[edit]
[-] Marketing.php
[edit]
[-] DeactivatePlugin.php
[edit]
[-] FilterByProductVariationsInReports.php
[edit]
[-] NeedSomeInspiration.php
[edit]
[-] OnboardingEmailMarketing.php
[edit]
[-] StartDropshippingBusiness.php
[edit]
[-] PersonalizeStore.php
[edit]
[-] Notes.php
[edit]
[-] WooCommercePayments.php
[edit]
[-] DrawAttention.php
[edit]
[-] MobileApp.php
[edit]
[-] WooCommerceSubscriptions.php
[edit]
[-] OnlineClothingStore.php
[edit]
[-] SellingOnlineCourses.php
[edit]
[-] DeprecatedNotes.php
[edit]