mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
e389165160
[ci skip] [skip ci]
16 lines
297 B
PHP
16 lines
297 B
PHP
<?php
|
|
|
|
use App\Models\Menu;
|
|
|
|
require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'smarty.php';
|
|
|
|
$page = new AdminPage();
|
|
|
|
$page->title = 'Menu List';
|
|
|
|
$menulist = Menu::getAll();
|
|
$page->smarty->assign('menulist', $menulist);
|
|
|
|
$page->content = $page->smarty->fetch('menu-list.tpl');
|
|
$page->render();
|