first commit
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Duplicator page header
|
||||
*
|
||||
* @package Duplicator
|
||||
* @copyright (c) 2022, Snap Creek LLC
|
||||
*/
|
||||
|
||||
use Duplicator\Core\Controllers\SubMenuItem;
|
||||
|
||||
defined("ABSPATH") or die("");
|
||||
|
||||
/**
|
||||
* Variables
|
||||
*
|
||||
* @var \Duplicator\Core\Controllers\ControllersManager $ctrlMng
|
||||
* @var \Duplicator\Core\Views\TplMng $tplMng
|
||||
* @var array<string, mixed> $tplData
|
||||
*/
|
||||
|
||||
if (empty($tplData['menuItemsL2'])) {
|
||||
return;
|
||||
}
|
||||
|
||||
/** @var SubMenuItem[] */ // @phpstan-ignore varTag.nativeType
|
||||
$items = $tplData['menuItemsL2'];
|
||||
|
||||
foreach ($items as $item) {
|
||||
$id = 'dup-submenu-l2-' . $tplData['currentLevelSlugs'][0] . '-' . $item->slug;
|
||||
$classes = [
|
||||
'dup-submenu-l2',
|
||||
'dup-nav-item',
|
||||
];
|
||||
if ($item->active) {
|
||||
$classes[] = 'active';
|
||||
}
|
||||
|
||||
$attrString = [];
|
||||
foreach ($item->attributes as $key => $value) {
|
||||
$attrString[] = $key . '="' . esc_attr($value) . '"';
|
||||
}
|
||||
$attrString = count($attrString) > 0 ? implode(' ', $attrString) : '';
|
||||
|
||||
if (strlen($item->link) > 0) {
|
||||
?>
|
||||
<a
|
||||
href="<?php echo esc_url($item->link); ?>"
|
||||
id="<?php echo esc_attr($id); ?>"
|
||||
class="<?php echo esc_attr(implode(' ', $classes)); ?>"
|
||||
<?php
|
||||
echo $attrString; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
||||
?>
|
||||
>
|
||||
<?php echo esc_html($item->label); ?>
|
||||
</a>
|
||||
<?php
|
||||
} else {
|
||||
?>
|
||||
<span
|
||||
id="<?php echo esc_attr($id); ?>"
|
||||
class="<?php echo esc_attr(implode(' ', $classes)); ?>"
|
||||
<?php
|
||||
echo $attrString; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
||||
?>
|
||||
>
|
||||
<?php echo esc_html($item->label); ?>
|
||||
</span>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user