mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
17 lines
262 B
PHP
17 lines
262 B
PHP
<?php
|
|
|
|
require_once './config.php';
|
|
|
|
$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();
|
|
|