| Server IP : 216.238.66.20 / Your IP : 216.73.216.229 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/components/alerts/ |
Upload File : |
<?php
use BackWPup\Utils\BackWPupHelpers;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* @var string $content The error message to display. Default: "".
* @var string $link URL to the page. Default: null.
*/
# Defaults
$content = $content ?? "";
?>
<div class="flex md:items-center max-md:flex-col max-md:items-start gap-2">
<div class="size-6 flex items-center justify-center rounded-sm bg-danger-light text-danger">✕</div>
<p class="text-base text-danger"><?php echo esc_html( $content ); ?></p>
<?php if (isset($link) && !empty($link)) : ?>
<?php
BackWPupHelpers::component("navigation/link", [
"url" => $link,
"newtab" => true,
"font" => "small",
"content" => __("More info.", 'backwpup'),
"class" => "max-md:text-base",
]);
?>
<?php endif; ?>
</div>