mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 02:01:33 +00:00
19 lines
319 B
PHP
19 lines
319 B
PHP
<?php
|
|
require_once dirname(__DIR__) . DIRECTORY_SEPARATOR . 'smarty.php';
|
|
|
|
|
|
use nntmux\Menu;
|
|
|
|
$page = new AdminPage();
|
|
|
|
$menu = new Menu();
|
|
|
|
$page->title = "Menu List";
|
|
|
|
$menulist = $menu->getAll();
|
|
$page->smarty->assign('menulist',$menulist);
|
|
|
|
$page->content = $page->smarty->fetch('menu-list.tpl');
|
|
$page->render();
|
|
|