mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
17 lines
295 B
PHP
17 lines
295 B
PHP
<?php
|
|
|
|
require_once './config.php';
|
|
|
|
$page = new AdminPage();
|
|
|
|
$category = new Category();
|
|
|
|
$page->title = "Category List";
|
|
|
|
$categorylist = $category->getFlat();
|
|
$page->smarty->assign('categorylist',$categorylist);
|
|
|
|
$page->content = $page->smarty->fetch('category-list.tpl');
|
|
$page->render();
|
|
|