This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/image_hash_ban/theme.php

31 lines
922 B
PHP
Raw Normal View History

2020-01-26 13:19:35 +00:00
<?php declare(strict_types=1);
use function MicroHTML\INPUT;
class ImageBanTheme extends Themelet
{
/*
* Show all the bans
*/
2019-11-29 01:52:24 +00:00
public function display_bans(Page $page, $table, $paginator)
{
$page->set_title("Image Bans");
$page->set_heading("Image Bans");
2019-11-29 01:52:24 +00:00
$page->add_block(new NavBlock());
$page->add_block(new Block("Edit Image Bans", $table . $paginator));
}
/*
* Display a link to delete an image
*/
public function get_buttons_html(Image $image)
{
2020-01-26 13:19:35 +00:00
return (string)SHM_SIMPLE_FORM(
2020-01-30 10:31:11 +00:00
"image_hash_ban/add",
2020-01-26 13:19:35 +00:00
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 Image']),
);
}
}