37 lines
1 KiB
PHP
37 lines
1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shimmie2;
|
|
|
|
use MicroHTML\HTMLElement;
|
|
|
|
use function MicroHTML\{INPUT,emptyHTML};
|
|
|
|
class ImageBanTheme extends Themelet
|
|
{
|
|
/*
|
|
* Show all the bans
|
|
*/
|
|
public function display_bans(Page $page, HTMLElement $table, HTMLElement $paginator): void
|
|
{
|
|
$page->set_title("Post Bans");
|
|
$page->set_heading("Post Bans");
|
|
$page->add_block(new NavBlock());
|
|
$page->add_block(new Block("Edit Post Bans", emptyHTML($table, $paginator)));
|
|
}
|
|
|
|
/*
|
|
* Display a link to delete an image
|
|
*/
|
|
public function get_buttons_html(Image $image): HTMLElement
|
|
{
|
|
return SHM_SIMPLE_FORM(
|
|
"image_hash_ban/add",
|
|
INPUT(["type" => 'hidden', "name" => 'c_hash', "value" => $image->hash]),
|
|
INPUT(["type" => 'hidden', "name" => 'c_image_id', "value" => $image->id]),
|
|
INPUT(["type" => 'text', "name" => 'c_reason']),
|
|
INPUT(["type" => 'submit', "value" => 'Ban Hash and Delete Post']),
|
|
);
|
|
}
|
|
}
|