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