| 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/navigation/ |
Upload File : |
<?php
use BackWPup\Utils\BackWPupHelpers;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* @var array $actions An array of actions.
*/
# Actions
$actions = $actions ?? [];
# CSS
$class = $class ?? "";
?>
<div class="<?php echo esc_attr( BackWPupHelpers::clsx( "group relative flex justify-end js-backwpup-menu", $class ) ); ?>">
<div class="h-11 w-10 flex items-center justify-center border border-primary-darker rounded cursor-pointer group-hover:border-secondary-darker group-hover:text-secondary-darker">
<?php BackWPupHelpers::component("icon", ["name" => "dots", "size" => "small"]); ?>
</div>
<div class="hidden absolute z-10 top-full right-0 rounded bg-white p-1 shadow-md js-backwpup-menu-content">
<?php foreach ($actions as $action) : ?>
<?php BackWPupHelpers::component("navigation/menu-item", $action); ?>
<?php endforeach; ?>
</div>
</div>