140 lines
7.6 KiB
Twig
140 lines
7.6 KiB
Twig
|
{% include "headitem.html.twig" with {title: "GENERAL_ADMIN_TITLE"|translate} %}
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
<!--
|
||
|
{% if updatelist == 1 %}
|
||
|
UpdateList('{{ oxid }}');
|
||
|
{% endif %}
|
||
|
function UpdateList( sID)
|
||
|
{
|
||
|
let oSearch = parent.list.document.getElementById("search");
|
||
|
oSearch.oxid.value=sID;
|
||
|
oSearch.fnc.value='';
|
||
|
oSearch.submit();
|
||
|
}
|
||
|
|
||
|
function EditThis( sID)
|
||
|
{
|
||
|
let oTransfer = document.getElementById("transfer");
|
||
|
oTransfer.oxid.value=sID;
|
||
|
oTransfer.cl.value='{{ oViewConf.getActiveClassName()|raw }}';
|
||
|
oTransfer.submit();
|
||
|
|
||
|
let oSearch = parent.list.document.getElementById("search");
|
||
|
oSearch.actedit.value = 0;
|
||
|
oSearch.oxid.value=sID;
|
||
|
oSearch.submit();
|
||
|
}
|
||
|
|
||
|
function ChangeLstrt()
|
||
|
{
|
||
|
let oSearch = document.getElementById("search");
|
||
|
if (document.search !== null && document.search.lstrt !== null)
|
||
|
oSearch.lstrt.value=0;
|
||
|
}
|
||
|
|
||
|
//-->
|
||
|
</script>
|
||
|
|
||
|
{% if readonly or edit.isWriteProtected() %}
|
||
|
{% set readonly = "readonly disabled" %}
|
||
|
{% else %}
|
||
|
{% set readonly = "" %}
|
||
|
{% endif %}
|
||
|
|
||
|
<form name="transfer" id="transfer" action="{{ oViewConf.getSelfLink()|raw }}" method="post">
|
||
|
{{ oViewConf.getHiddenSid()|raw }}
|
||
|
<input type="hidden" name="oxid" value="{{ oxid }}">
|
||
|
<input type="hidden" name="oxidCopy" value="{{ oxid }}">
|
||
|
<input type="hidden" name="cl" value="{{ oViewConf.getActiveClassName()|raw }}">
|
||
|
<input type="hidden" name="editlanguage" value="{{ editlanguage }}">
|
||
|
</form>
|
||
|
|
||
|
<form name="myedit" id="myedit" action="{{ oViewConf.getSelfLink()|raw }}" method="post" style="padding: 0;margin: 0;height:0;">
|
||
|
{{ oViewConf.getHiddenSid()|raw }}
|
||
|
<input type="hidden" name="cl" value="{{ oViewConf.getActiveClassName()|raw }}">
|
||
|
<input type="hidden" name="fnc" value="">
|
||
|
<input type="hidden" name="oxid" value="{{ oxid }}">
|
||
|
<input type="hidden" name="voxid" value="{{ oxid }}">
|
||
|
<input type="hidden" name="editval[{{ edit.d3GetFieldLongName('oxid') }}]" value="{{ oxid }}">
|
||
|
<table style="border: none; padding: 0; border-spacing: 0; border-collapse: collapse; width: 98%">
|
||
|
<tr>
|
||
|
<td class="edittext" style="vertical-align: top; padding-top:10px;padding-left:10px;">
|
||
|
<table style="border: none; padding: 0; border-spacing: 0; border-collapse: collapse">
|
||
|
<tr>
|
||
|
<td class="edittext">
|
||
|
<label for="MainActive">{{ translate({ ident: "D3_MODPROFILE_MAIN_ACTIVE" }) }}</label>
|
||
|
</td>
|
||
|
<td class="edittext">
|
||
|
<input type="hidden" name="editval[{{ edit.d3GetFieldLongName('oxactive') }}]" value='0'>
|
||
|
<input id="MainActive" class="edittext" type="checkbox" name="editval[{{ edit.d3GetFieldLongName('oxactive') }}]" value='1' {% if edit.getFieldData('oxactive') == 1 %}checked{% endif %} {{ readonly }}>
|
||
|
{% include "inputhelp.html.twig" with {'sHelpId': help_id("D3_MODPROFILE_MAIN_ACTIVE_DESC"), 'sHelpText': help_text("D3_MODPROFILE_MAIN_ACTIVE_DESC")} %}
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% if blUseTimeCheck %}
|
||
|
<tr>
|
||
|
<td class="edittext">
|
||
|
{{ translate({ ident: "D3_MODPROFILE_MAIN_ACTIVFROMTILL" }) }}
|
||
|
</td>
|
||
|
<td class="edittext">
|
||
|
<label for="MainActiveFrom">{{ translate({ ident: "D3_MODPROFILE_MAIN_ACTIVEFROM" }) }}</label> <input id="MainActiveFrom" type="text" class="editinput" size="27" name="editval[{{ edit.d3GetFieldLongName('oxactivefrom') }}]" value="{{ edit.getFieldData('oxactivefrom')|format_date }}" {% include "help.html.twig" with {helpid: "article_vonbis"} %} {{ readonly }}><br>
|
||
|
<label for="MainActiveTo">{{ translate({ ident: "D3_MODPROFILE_MAIN_ACTIVETO" }) }}</label> <input id="MainActiveTo" type="text" class="editinput" size="27" name="editval[{{ edit.d3GetFieldLongName('oxactiveto') }}]" value="{{ edit.getFieldData('oxactiveto')|format_date }}" {% include "help.html.twig" with {helpid: "article_vonbis"} %} {{ readonly }}>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% endif %}
|
||
|
<tr>
|
||
|
<td class="edittext">
|
||
|
<label for="MainTitle">{{ translate({ ident: "D3_MODPROFILE_MAIN_TITLE" }) }}</label>
|
||
|
</td>
|
||
|
<td class="edittext">
|
||
|
<input id="MainTitle" type="text" class="editinput" size="50" maxlength="{{ edit.d3getFieldMaxLength('oxtitle') }}" name="editval[{{ edit.d3GetFieldLongName('oxtitle') }}]" value="{{ edit.getFieldData('oxtitle') }}" {{ readonly }}>
|
||
|
</td>
|
||
|
</tr>
|
||
|
|
||
|
{% include "@d3modcfg_lib/admin/inc/actionbuttons" %}
|
||
|
|
||
|
</table>
|
||
|
</td>
|
||
|
<!-- Anfang rechte Seite -->
|
||
|
<td class="edittext" style="text-align: left; vertical-align: top; height:99%;padding-left:5px;padding-bottom:30px;padding-top:10px;">
|
||
|
<table style="border: none; padding: 0; border-spacing: 0; border-collapse: collapse">
|
||
|
<tr>
|
||
|
<td class="edittext">
|
||
|
<label for="MainSort">{{ translate({ ident: "D3_MODPROFILE_MAIN_SORT" }) }}</label>
|
||
|
</td>
|
||
|
<td class="edittext">
|
||
|
<input id="MainSort" type="text" class="editinput" size="32" maxlength="{{ edit.d3getFieldMaxLength('oxsort') }}" name="editval[{{ edit.d3GetFieldLongName('oxsort') }}]" value="{{ edit.getFieldData('oxsort') }}" {{ readonly }}>
|
||
|
{% include "inputhelp.html.twig" with {'sHelpId': help_id("D3_MODPROFILE_MAIN_SORT_DESC"), 'sHelpText': help_text("D3_MODPROFILE_MAIN_SORT_DESC")} %}
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td class="edittext">
|
||
|
<label for="MainFolder">{{ translate({ ident: "D3_MODPROFILE_MAIN_FOLDER" }) }}</label>
|
||
|
</td>
|
||
|
<td class="edittext">
|
||
|
<select id="MainFolder" class="editinput" size="1" name="editval[{{ edit.d3GetFieldLongName('oxfolder') }}]" {{ readonly }}>
|
||
|
<option value="" {% if '' == edit.getFieldData('oxfolder') %} selected{% endif %}>{{ translate({ ident: "D3_MODPROFILE_MAIN_NOFOLDER" }) }}</option>
|
||
|
{% for sMLItem, sTranslation in oView.getFolderList() %}
|
||
|
<option value="{{ sMLItem }}" {% if sMLItem == edit.getFieldData('oxfolder') %} selected{% endif %}>{{ sTranslation }}</option>
|
||
|
{% endfor %}
|
||
|
</select>
|
||
|
{% include "inputhelp.html.twig" with {'sHelpId': help_id("D3_MODPROFILE_MAIN_FOLDER_DESC"), 'sHelpText': help_text("D3_MODPROFILE_MAIN_FOLDER_DESC")} %}
|
||
|
</td>
|
||
|
</tr>
|
||
|
|
||
|
{% if blShowLangSwitch %}
|
||
|
<tr>
|
||
|
<td class="edittext" colspan="2"><br>
|
||
|
{% include "language_edit.html.twig" %}<br>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% endif %}
|
||
|
</table>
|
||
|
</td>
|
||
|
<!-- Ende rechte Seite -->
|
||
|
</tr>
|
||
|
</table>
|
||
|
</form>
|
||
|
|
||
|
{% include "@d3modcfg_lib/admin/inc/inc.html.twig" %}
|