mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
17 lines
405 B
PHP
17 lines
405 B
PHP
<?php
|
|
|
|
require_once dirname(__DIR__, 2).DIRECTORY_SEPARATOR.'resources/views/themes/smarty.php';
|
|
|
|
use Blacklight\Contents;
|
|
use Blacklight\http\AdminPage;
|
|
|
|
$page = new AdminPage();
|
|
$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();
|