mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
18 lines
362 B
PHP
18 lines
362 B
PHP
<?php
|
|
require_once dirname(__DIR__) . DIRECTORY_SEPARATOR . 'smarty.php';
|
|
|
|
|
|
use nntmux\Binaries;
|
|
|
|
$page = new AdminPage();
|
|
|
|
$bin = new Binaries();
|
|
|
|
$page->title = "Binary Black/Whitelist List";
|
|
|
|
$binlist = $bin->getBlacklist(false);
|
|
$page->smarty->assign('binlist', $binlist);
|
|
|
|
$page->content = $page->smarty->fetch('binaryblacklist-list.tpl');
|
|
$page->render();
|