| Server IP : 216.238.66.20 / Your IP : 216.73.216.199 Web Server : nginx/1.30.4 System : Linux woropds 5.15.0-187-generic #197-Ubuntu SMP Fri Jul 17 19:17:01 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/sweetheart.mx/htdocs/wp-content/plugins/backwpup/views/notice/ |
Upload File : |
<?php
/**
* Admin notice template: stale restore files warning.
*
* Variables available via $bind (NoticeMessage):
* - $bind->delete_nonce string Nonce for the delete AJAX action.
* - $bind->dismissurl string URL to permanently dismiss the notice for this user.
*
* @package BackWPup
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<p class="notice-titre">
<?php esc_html_e( 'Security Warning: Sensitive restore files detected', 'backwpup' ); ?>
</p>
<?php if ( isset( $bind->dismissurl ) && $bind->dismissurl ) : ?>
<a class="closeIt bwpup-ajax-close" href="<?php echo esc_url( $bind->dismissurl ); ?>" data-bwpu-hide="stale_restore_files_notice">
<span class="screen-reader-text"><?php esc_html_e( 'Dismiss', 'backwpup' ); ?></span>
</a>
<?php endif; ?>
<p>
<?php
esc_html_e(
'BackWPup detected leftover files from a previous restore operation in the restore working directory. These files may contain your database credentials in plain text. It is strongly recommended to delete them immediately.',
'backwpup'
);
?>
</p>
<p>
<button
type="button"
id="backwpup-delete-restore-files"
class="button button--inpsyde delete-restore-files"
data-nonce="<?php echo esc_attr( $bind->delete_nonce ); ?>"
data-action="backwpup_delete_restore_files"
>
<?php esc_html_e( 'Delete restore files', 'backwpup' ); ?>
</button>
</p>
<span
id="backwpup-delete-restore-files-error"
class="stale-restore-files-error"
role="alert"
aria-live="assertive"
style="display:none; margin-left: 1em; color: red;"
></span>