?AlkantarClanX12

Your IP : 216.73.216.177


Current Path : /home/rankinh/mariage-reunion-refonte/wp-content/plugins/backwpup/components/navigation/
Upload File :
Current File : /home/rankinh/mariage-reunion-refonte/wp-content/plugins/backwpup/components/navigation/menu.php

<?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>