streams/Code/Widget/Menu_preview.php

21 lines
305 B
PHP
Raw Normal View History

2017-03-16 04:26:28 +00:00
<?php
2022-02-16 04:08:28 +00:00
namespace Code\Widget;
2017-03-16 04:26:28 +00:00
2021-12-02 22:33:36 +00:00
use App;
2022-02-16 04:08:28 +00:00
use Code\Lib\Menu;
2021-12-02 22:33:36 +00:00
2017-03-16 04:26:28 +00:00
2022-10-23 21:18:44 +00:00
class Menu_preview implements WidgetInterface
2021-12-02 23:02:31 +00:00
{
2017-03-16 04:26:28 +00:00
2022-10-24 03:39:49 +00:00
public function widget(array $arguments): string
2021-12-02 23:02:31 +00:00
{
2021-12-03 03:01:39 +00:00
if (!App::$data['menu_item']) {
2022-10-23 21:18:44 +00:00
return '';
2021-12-03 03:01:39 +00:00
}
2017-03-16 04:26:28 +00:00
2022-01-26 05:43:05 +00:00
return Menu::render(App::$data['menu_item']);
2021-12-02 23:02:31 +00:00
}
2017-03-16 04:26:28 +00:00
}