Files
awo-hamburg-intranet/module/filegallery/edit_filegallery_cardform.inc.php
2026-02-17 14:56:23 +01:00

75 lines
3.1 KiB
PHP

<?
require_once("filegallery.config.inc.php");
$formname = "form_filegallery_cardform";
$translation = \DynCom\mysyde\common\classes\Registry::get("translation");
$inputname = "input_id";
$input_page_id = (isset($_REQUEST["input_page_id"]) ? $_REQUEST["input_page_id"] : "");
$input_component_id = (isset($_REQUEST["input_component_id"]) ? $_REQUEST["input_component_id"] : "");
?>
<div id="overlaycrumb">
<?php if ($input_filegallery["id"] == "") {
echo $translation->get("new_filegallery");
} else {
echo $translation->get("edit_filegallery");
}
?>
<div id="closeoverlay" onclick="disableOverlay();"></div>
</div>
<ul class="toolbar_menu">
<?php
// Zurueck zur uebersicht
if (is_page_edit() || is_component_edit()) {
button("left", $translation->get("back"), $formname, "loadCard('edit_content_page', true)");
}
// Speichern button
button("save", $translation->get("save"), $formname, "loadCard('save_filegallery', true)");
// Speichern und schliessen
button("save", $translation->get("save_and_close"), $formname, "loadCard('save_filegallery', true, '', true)");
?>
<li>
<ul>
<?php
if ($input_filegallery["id"] != "" && is_page_edit() === FALSE && is_component_edit() === FALSE) {
echo button("delete", $translation->get("delete"), $formname, "loadCard('delete_filegallery', true, '{$translation->get('delete_filegallery_confirm')}', true)", "", FALSE);
}
?>
</ul>
</li>
</ul>
<?php
if ($messages !== null) {
if (count($messages)) {
echo '<div id="overlayMessages">' . join("\r\n", $messages) . '</div>';
}
}
?>
<form id="<?= $formname ?>" name="<?= $formname ?>" method="post">
<input name="input_id" type="hidden" value="<?= $input_filegallery["id"] ?>">
<input type="hidden" name="get_real_page_link_id" value="1" />
<input type="hidden" name="input_page_id" value="<?php echo $input_page_id; ?>" />
<input type="hidden" name="input_component_id" value="<?php echo $input_component_id; ?>" />
<input name="data-sitepartid" type="hidden" value="5">
<input type="hidden" id="module_input_filegallery_<?= $input_filegallery["id"]; ?>" name="module_input_filegallery_<?= $input_filegallery["id"]; ?>" value="" />
<table class="cardform" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<? input($translation->get("description"), "input_description", "text", $input_filegallery["description"], 255) ?>
<? input($translation->get("show_in_all_languages"), "input_all_languages", "checkbox", $input_filegallery["all_languages"]) ?>
</td>
</tr>
</table>
</form>
<?
if ($input_filegallery['id'] != "") {
require_once("edit_filegallery_line_listform.inc.php");
}
?>