| Server IP : 89.248.107.232 / Your IP : 216.73.217.70 Web Server : Apache System : Linux host2.kasilh.com 5.14.0-687.36.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 7 05:40:49 EDT 2026 x86_64 User : seg ( 10005) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/seg-sa.es/gessing.es/wp-content/plugins/duplicator/views/parts/ |
Upload File : |
<?php
/**
* NoticeBar Education template for Lite.
*
*
* @var string $upgrade_link Upgrade to Pro page URL.
*/
use Duplicator\Libs\Upsell;
defined("ABSPATH") or die("");
/**
* Variables
*
* @var string $umt_content
*/
?>
<div id="dup-notice-bar">
<span class="dup-notice-logo" >
<img src="<?php echo esc_url(DUPLICATOR_PLUGIN_URL . 'assets/img/logo-white.svg'); ?>" alt="Duplicaator Logo"/>
</span>
<span class="dup-notice-bar-message">
<?php
printf(
wp_kses(
/* translators: %s - WPForms.com Upgrade page URL. */
__('<strong>You\'re using Duplicator Lite.</strong> To unlock more features consider <a href="%s" target="_blank" rel="noopener noreferrer">upgrading to Pro</a>', 'duplicator'),
array(
'a' => array(
'href' => array(),
'rel' => array(),
'target' => array(),
),
'strong' => array(),
)
),
esc_url(Upsell::getCampaignUrl('lite-upgrade-bar', $umt_content))
);
?>
<a href="<?php echo esc_url(Upsell::getCampaignUrl('lite-upgrade-bar', $umt_content)); ?>"
class="dup-upgrade-arrow" target="_blank" rel="noopener noreferrer">→</a>
</span>
<button type="button" class="dup-dismiss-button"
title="<?php esc_attr_e('Dismiss this message.', 'duplicator'); ?>">
</button>
</div>
<script>
jQuery(document).ready(function ($) {
$(document).on(
'click',
'#dup-notice-bar .dup-dismiss-button',
function (e) {
e.preventDefault();
$.post(ajaxurl, {
action: 'duplicator_notice_bar_dismiss',
nonce: '<?php echo wp_create_nonce('duplicator-notice-bar-dismiss'); ?>'
});
$('#dup-notice-bar').fadeOut();
}
);
});
</script>