Current File : /home/mdkeenpw/www/wp-content/themes/globallogistics/skins/skins-notice.php |
<?php
/**
* The template to display Admin notices
*
* @package GLOBALLOGISTICS
* @since GLOBALLOGISTICS 1.0.64
*/
$globallogistics_skins_url = get_admin_url( null, 'admin.php?page=trx_addons_theme_panel#trx_addons_theme_panel_section_skins' );
$globallogistics_skins_args = get_query_var( 'globallogistics_skins_notice_args' );
?>
<div class="globallogistics_admin_notice globallogistics_skins_notice notice notice-info is-dismissible" data-notice="skins">
<?php
// Theme image
$globallogistics_theme_img = globallogistics_get_file_url( 'screenshot.jpg' );
if ( '' != $globallogistics_theme_img ) {
?>
<div class="globallogistics_notice_image"><img src="<?php echo esc_url( $globallogistics_theme_img ); ?>" alt="<?php esc_attr_e( 'Theme screenshot', 'globallogistics' ); ?>"></div>
<?php
}
// Title
?>
<h3 class="globallogistics_notice_title">
<?php esc_html_e( 'New skins are available', 'globallogistics' ); ?>
</h3>
<?php
// Description
$globallogistics_total = $globallogistics_skins_args['update']; // Store value to the separate variable to avoid warnings from ThemeCheck plugin!
$globallogistics_skins_msg = $globallogistics_total > 0
// Translators: Add new skins number
? '<strong>' . sprintf( _n( '%d new version', '%d new versions', $globallogistics_total, 'globallogistics' ), $globallogistics_total ) . '</strong>'
: '';
$globallogistics_total = $globallogistics_skins_args['free'];
$globallogistics_skins_msg .= $globallogistics_total > 0
? ( ! empty( $globallogistics_skins_msg ) ? ' ' . esc_html__( 'and', 'globallogistics' ) . ' ' : '' )
// Translators: Add new skins number
. '<strong>' . sprintf( _n( '%d free skin', '%d free skins', $globallogistics_total, 'globallogistics' ), $globallogistics_total ) . '</strong>'
: '';
$globallogistics_total = $globallogistics_skins_args['pay'];
$globallogistics_skins_msg .= $globallogistics_skins_args['pay'] > 0
? ( ! empty( $globallogistics_skins_msg ) ? ' ' . esc_html__( 'and', 'globallogistics' ) . ' ' : '' )
// Translators: Add new skins number
. '<strong>' . sprintf( _n( '%d paid skin', '%d paid skins', $globallogistics_total, 'globallogistics' ), $globallogistics_total ) . '</strong>'
: '';
?>
<div class="globallogistics_notice_text">
<p>
<?php
// Translators: Add new skins info
echo wp_kses_data( sprintf( __( "We are pleased to announce that %s are available for your theme", 'globallogistics' ), $globallogistics_skins_msg ) );
?>
</p>
</div>
<?php
// Buttons
?>
<div class="globallogistics_notice_buttons">
<?php
// Link to the theme dashboard page
?>
<a href="<?php echo esc_url( $globallogistics_skins_url ); ?>" class="button button-primary"><i class="dashicons dashicons-update"></i>
<?php
// Translators: Add theme name
esc_html_e( 'Go to Skins manager', 'globallogistics' );
?>
</a>
</div>
</div>