2007-07-19 12:08:42 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class AdminPageTheme extends Themelet {
|
|
|
|
public function display_page($page) {
|
|
|
|
$page->set_title("Admin Tools");
|
|
|
|
$page->set_heading("Admin Tools");
|
|
|
|
$page->add_block(new NavBlock());
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:20:48 +00:00
|
|
|
public function display_delete_block($page, $image_id) {
|
2007-07-19 12:08:42 +00:00
|
|
|
$i_image_id = int_escape($image_id);
|
|
|
|
$html = "
|
|
|
|
<form action='".make_link("admin/delete_image")."' method='POST'>
|
|
|
|
<input type='hidden' name='image_id' value='$i_image_id'>
|
|
|
|
<input type='submit' value='Delete'>
|
|
|
|
</form>
|
|
|
|
";
|
|
|
|
$page->add_block(new Block("Admin", $html, "left"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|