40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php
|
|
|
|
class TranscodeImageTheme extends Themelet
|
|
{
|
|
/*
|
|
* Display a link to resize an image
|
|
*/
|
|
public function get_transcode_html(Image $image, array $options)
|
|
{
|
|
global $config;
|
|
|
|
$html = "
|
|
".make_form(make_link("transcode/{$image->id}"), 'POST')."
|
|
<input type='hidden' name='image_id' value='{$image->id}'>
|
|
".$this->get_transcode_picker_html($options)."
|
|
<br><input id='transcodebutton' type='submit' value='Transcode'>
|
|
</form>
|
|
";
|
|
|
|
return $html;
|
|
}
|
|
|
|
public function get_transcode_picker_html(array $options)
|
|
{
|
|
$html = "<select id='transcode_format' name='transcode_format' required='required' >";
|
|
foreach ($options as $display=>$value) {
|
|
$html .= "<option value='$value'>$display</option>";
|
|
}
|
|
|
|
return $html."</select>";
|
|
}
|
|
|
|
public function display_transcode_error(Page $page, string $title, string $message)
|
|
{
|
|
$page->set_title("Transcode Image");
|
|
$page->set_heading("Transcode Image");
|
|
$page->add_block(new NavBlock());
|
|
$page->add_block(new Block($title, $message));
|
|
}
|
|
}
|