mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
19 lines
445 B
PHP
19 lines
445 B
PHP
<?php
|
|
|
|
require_once dirname(__DIR__, 2).DIRECTORY_SEPARATOR.'resources/views/themes/smarty.php';
|
|
|
|
use Blacklight\Binaries;
|
|
use Blacklight\http\BasePage;
|
|
|
|
$page = new BasePage();
|
|
$page->setAdminPrefs();
|
|
$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->adminrender();
|