Files
newznab-tmux/public/admin/content-list.php
T

17 lines
325 B
PHP

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