| Server IP : 213.142.137.24 / Your IP : 216.73.216.122 Web Server : Apache System : Linux ns1.medyayapim.net 3.10.0-1160.11.1.el7.x86_64 #1 SMP Fri Dec 18 16:34:56 UTC 2020 x86_64 User : dgpilates.com_ooz9p0tadyh ( 10028) PHP Version : 8.0.30 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/dgpilates.com/httpdocs/wp-content/plugins/kirki/ |
Upload File : |
<?php
/**
* Adds upgrade notifications.
*
* @package Kirki
* @category Core
* @author Themeum
* @copyright Copyright (c) 2023, Themeum
* @license https://opensource.org/licenses/MIT
* @since 3.0.0
*/
if ( ! function_exists( 'kirki_show_upgrade_notification' ) ) :
/**
* Fires at the end of the update message container in each
* row of the plugins list table.
* Allows us to add important notices about updates should they be needed.
* Notices should be added using "== Upgrade Notice ==" in readme.txt.
*
* @since 2.3.8
* @param array $plugin_data An array of plugin metadata.
* @param array $response An array of metadata about the available plugin update.
*/
function kirki_show_upgrade_notification( $plugin_data, $response ) {
// Check "upgrade_notice".
if ( isset( $response->upgrade_notice ) && strlen( trim( $response->upgrade_notice ) ) > 0 ) : ?>
<style>.kirki-upgrade-notification {background-color:#d54e21;padding:10px;color:#f9f9f9;margin-top:10px;margin-bottom:10px;}.kirki-upgrade-notification + p {display:none;}</style>
<div class="kirki-upgrade-notification">
<strong><?php esc_html_e( 'Important Upgrade Notice:', 'kirki' ); ?></strong>
<?php $upgrade_notice = wp_strip_all_tags( $response->upgrade_notice ); ?>
<?php echo esc_html( $upgrade_notice ); ?>
</div>
<?php
endif;
}
endif;
add_action( 'in_plugin_update_message-' . plugin_basename( __FILE__ ), 'kirki_show_upgrade_notification', 10, 2 );