kollapsminoriteten/wp-content/themes/blocksy/inc/panel-builder/header/mobile-menu/view.php

28 lines
396 B
PHP
Raw Permalink Normal View History

2025-08-27 08:44:30 +02:00
<?php
if (! isset($location)) {
$location = 'menu_mobile';
}
$render_args = [
'attr' => $attr,
'atts' => $atts,
'location' => $location
];
if ($row_id === 'offcanvas') {
echo blocksy_render_view(
dirname(__FILE__) . '/views/offcanvas.php',
$render_args
);
}
if ($row_id !== 'offcanvas') {
echo blocksy_render_view(
dirname(__FILE__) . '/views/inline.php',
$render_args
);
}