| 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/components/ |
Upload File : |
<?php
use BackWPup\Utils\BackWPupHelpers;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* @var string $title Title to display. Default: "".
* @var string $type The type of container. Values: "modal", "sidebar". Default : "sidebar".
*/
# Defaults
$title = $title ?? "";
$type = $type ?? "sidebar";
$navigation = $navigation ?? "";
?>
<header class="flex items-center justify-between gap-4">
<button data-toggle-setting-panel="<?php echo esc_attr( $navigation ); ?>" class="text-primary-darker text-2xl hover:text-secondary-darker">
<?php
BackWPupHelpers::component( 'icon', [
'name' => 'arrow-left',
'size' => 'large',
]);
?>
</button>
<h1 class="flex items-center gap-1 text-primary-darker font-title font-bold text-2xl"><?php echo esc_html( $title ); ?></h1>
<button class="text-primary-darker text-2xl hover:text-secondary-darker js-backwpup-close-<?php echo esc_attr( $type ); ?>">
✕
</button>
</header>