mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
16 lines
389 B
PHP
16 lines
389 B
PHP
<?php
|
|
require_once dirname(__DIR__) . DIRECTORY_SEPARATOR . 'smarty.php';
|
|
|
|
|
|
use nntmux\Contents;
|
|
|
|
$page = new AdminPage();
|
|
$contents = new Contents(['Settings' => $page->settings]);
|
|
$contentlist = $contents->getAll();
|
|
$page->smarty->assign('contentlist', $contentlist);
|
|
|
|
$page->title = "Content List";
|
|
|
|
$page->content = $page->smarty->fetch('content-list.tpl');
|
|
$page->render();
|