streams/Code/Widget/Menu_preview.php
2022-10-23 20:39:49 -07:00

20 lines
305 B
PHP

<?php
namespace Code\Widget;
use App;
use Code\Lib\Menu;
class Menu_preview implements WidgetInterface
{
public function widget(array $arguments): string
{
if (!App::$data['menu_item']) {
return '';
}
return Menu::render(App::$data['menu_item']);
}
}