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/trash/theme.php

15 lines
335 B
PHP
Raw Normal View History

<?php
class TrashTheme extends Themelet
{
function get_image_admin_html(int $image_id) {
$html = "
".make_form(make_link('trash_restore/'.$image_id), 'POST')."
<input type='hidden' name='image_id' value='$image_id'>
<input type='submit' value='Restore From Trash'>
</form>
";
return $html; }
}