Viewing file: ReviewShippingSettings.php (1.44 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php /** * Kkart Admin Review Shipping Settings Note Provider. * * Adds an admin note prompting the admin to review their shipping settings. * * @package Kkart Admin */
namespace Automattic\Kkart\Admin\Notes;
defined( 'ABSPATH' ) || exit;
/** * Review_Shipping_Settings */ class ReviewShippingSettings { use NoteTraits;
const NOTE_NAME = 'kkart-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/>", 'kkart' ), __( 'Domestic orders: free shipping<br/>', 'kkart' ), __( 'International orders: disabled<br/>', 'kkart' ), );
if ( 'US' === KKART()->countries->get_base_country() ) { array_push( $content_lines, __( 'Label printing: enabled', 'kkart' ) ); }
$note->set_name( self::NOTE_NAME ); $note->set_source( 'kkart-admin' ); $note->set_title( __( 'Review your shipping settings', 'kkart' ) ); $note->set_content( implode( '', $content_lines ) ); $note->set_content_data( (object) array() ); $note->set_type( Note::E_KKART_ADMIN_NOTE_INFORMATIONAL );
$note->add_action( 'edit-shipping-settings', __( 'Edit shipping settings', 'kkart' ), admin_url( 'admin.php?page=kkart-settings&tab=shipping' ), Note::E_KKART_ADMIN_NOTE_UNACTIONED, true );
return $note; } }
|