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

39 lines
1.4 KiB
PHP
Raw Normal View History

2011-09-04 03:13:41 +00:00
<?php
class ResizeImageTheme extends Themelet {
/*
* Display a link to resize an image
*/
public function get_resize_html(Image $image) {
2012-02-10 04:04:37 +00:00
global $user, $config;
2011-09-04 03:13:41 +00:00
2012-08-18 20:09:40 +00:00
$default_width = $config->get_int('resize_default_width');
$default_height = $config->get_int('resize_default_height');
if(!$default_width) $default_width = $image->width;
if(!$default_height) $default_height = $image->height;
2011-09-04 03:13:41 +00:00
$html = "
".make_form(make_link("resize/{$image->id}"), 'POST')."
<input type='hidden' name='image_id' value='{$image->id}'>
2013-05-18 09:14:27 +00:00
<input id='original_width' name='original_width' type='hidden' value='{$image->width}'>
<input id='original_height' name='original_height' type='hidden' value='{$image->height}'>
<input id='resize_width' style='width: 70px;' name='resize_width' type='number' min='1' value='".$default_width."'> x
<input id='resize_height' style='width: 70px;' name='resize_height' type='number' min='1' value='".$default_height."'>
<br><label><input type='checkbox' id='resize_aspect' name='resize_aspect' style='max-width: 20px;' checked='checked'> Keep Aspect</label>
<br><input id='resizebutton' type='submit' value='Resize'>
2011-09-04 03:13:41 +00:00
</form>
";
return $html;
}
2012-02-10 04:04:37 +00:00
public function display_resize_error(Page $page, /*string*/ $title, /*string*/ $message) {
$page->set_title("Resize Image");
$page->set_heading("Resize Image");
$page->add_block(new NavBlock());
2011-09-04 03:13:41 +00:00
$page->add_block(new Block($title, $message));
}
}