48 lines
1.6 KiB
PHP
48 lines
1.6 KiB
PHP
<?php
|
|
$formname = "form_facility_card";
|
|
$translation = \DynCom\mysyde\common\classes\Registry::get("translation");
|
|
$inputname = "input_id";
|
|
?>
|
|
|
|
<div id="overlaycrumb">
|
|
<?php if ($input_role["id"] == "") {
|
|
echo $translation->get("new_facility");
|
|
} else {
|
|
echo $translation->get("edit_facility");
|
|
}
|
|
?>
|
|
<div id="closeoverlay" onclick="disableOverlay();"></div>
|
|
</div>
|
|
<ul class="toolbar_menu">
|
|
<?= button("save", $translation->get("save_and_close"), $formname, "loadCard('save', true, '', true)"); ?>
|
|
<li>
|
|
<ul>
|
|
<?php
|
|
if ($input_role["id"] != "") {
|
|
echo button("delete", $translation->get("delete"), $formname, "loadCard('delete', true, '{$translation->get('delete_role_confirm')}', true)", "", FALSE);
|
|
}
|
|
?>
|
|
<?= button("reset", $translation->get("restore"), $formname, "?action=edit", "", 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_role["id"] ?>">
|
|
|
|
<table class="cardform" border="0" cellspacing="0" cellpadding="0">
|
|
<div>
|
|
<? input($translation->get("description"), "input_description", "text", $input_role["description"], 100) ?>
|
|
</div>
|
|
</table>
|
|
</form>
|