?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/demo2/wp-content/themes/blocksy/inc/panel-builder/header/mobile-menu/



?? Go up: /home/webdevt/www/demo2/wp-content/themes/blocksy/inc/panel-builder/header

?? Viewing: view.php

<?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
	);
}



??

??