mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-30 17:58:59 +00:00
f8300a1ab1
(cherry picked from commit 8d59b44)
13 lines
326 B
PHP
13 lines
326 B
PHP
<?php
|
|
require_once("config.php");
|
|
|
|
|
|
$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(); |