backup: live-stand vor erstem git-deployment

This commit is contained in:
2026-06-29 11:04:33 +02:00
commit 90368b8a29
699 changed files with 162032 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
$translation = \DynCom\mysyde\common\classes\Registry::get("translation");
if (!is_array($sitepart_options) || count($sitepart_options) == 0) {
$width = 1920;
$height = 1080;
} else {
$width = $sitepart_options["collection_setup_image_width"];
$height = $sitepart_options["collection_setup_image_height"];
}
?>
<h2>Bildoptionen</h2>
<table class="cardform" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><?php input($translation->get("max_width"), "collection_setup_image_width", "code", $width); ?> </td>
<td></td>
</tr>
<tr>
<td><?php input($translation->get("max_height"), "collection_setup_image_height", "code", $height); ?> </td>
<td></td>
</tr>
</table>