Files
newznab-tmux-NNTmux/public/admin/content-list.php
T
2017-09-05 01:12:05 +02:00

16 lines
370 B
PHP

<?php
require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'smarty.php';
use nntmux\Contents;
$page = new AdminPage();
$contents = new Contents(['Settings' => $page->pdo]);
$contentlist = $contents->getAll();
$page->smarty->assign('contentlist', $contentlist);
$page->title = 'Content List';
$page->content = $page->smarty->fetch('content-list.tpl');
$page->render();