mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
60 lines
1.5 KiB
PHP
60 lines
1.5 KiB
PHP
<?php
|
|
|
|
require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'smarty.php';
|
|
|
|
use App\Models\Group;
|
|
|
|
$page = new AdminPage();
|
|
$id = 0;
|
|
|
|
// Set the current action.
|
|
$action = request()->input('action') ?? 'view';
|
|
|
|
$group = [
|
|
'id' => '',
|
|
'name' => '',
|
|
'description' => '',
|
|
'minfilestoformrelease' => 0,
|
|
'active' => 0,
|
|
'backfill' => 0,
|
|
'minsizetoformrelease' => 0,
|
|
'first_record' => 0,
|
|
'last_record' => 0,
|
|
'backfill_target' => 0,
|
|
];
|
|
|
|
switch ($action) {
|
|
case 'submit':
|
|
if (request()->input('id') === '') {
|
|
// Add a new group.
|
|
request()->merge(['name' => Group::isValidGroup(request()->input('name'))]);
|
|
if (request()->input('name') !== false) {
|
|
Group::addGroup(request()->all());
|
|
}
|
|
} else {
|
|
// Update an existing group.
|
|
Group::updateGroup(request()->all());
|
|
}
|
|
header('Location:'.WWW_TOP.'/group-list.php');
|
|
break;
|
|
|
|
case 'view':
|
|
default:
|
|
if (request()->has('id')) {
|
|
$page->title = 'Newsgroup Edit';
|
|
$id = request()->input('id');
|
|
$group = Group::getGroupByID($id);
|
|
} else {
|
|
$page->title = 'Newsgroup Add';
|
|
}
|
|
break;
|
|
}
|
|
|
|
$page->smarty->assign('yesno_ids', [1, 0]);
|
|
$page->smarty->assign('yesno_names', ['Yes', 'No']);
|
|
|
|
$page->smarty->assign('group', $group);
|
|
|
|
$page->content = $page->smarty->fetch('group-edit.tpl');
|
|
$page->render();
|