add 7.0.1.0 sourceGuardian PHP 8
This commit is contained in:
@ -17,7 +17,7 @@
|
||||
</span>
|
||||
|
||||
<span class="d3modcfg_btn icon d3color-blue">
|
||||
<button type="submit" name="save" class="saveinnewlangtext" onClick="document.myedit.fnc.value='d3exportProfile'" {% if oxid == ' - 1' %} disabled{% endif %} {{ readonly_fields }} {{ custreadonly }}>
|
||||
<button type="submit" name="save" class="saveinnewlangtext" onClick="document.myedit.fnc.value='d3exportProfile'" {% if oxid == ' - 1' %} disabled{% endif %} {{ readonly }} {{ readonly_fields }} {{ custreadonly }}>
|
||||
<i class="fas fa-download fa-inverse"></i>{{ translate({ ident: "D3_GENERAL_MODPROFILE_EXPORT" }) }}
|
||||
</button>
|
||||
</span>
|
||||
|
@ -2,10 +2,10 @@
|
||||
{% set oLog = oView.d3getLog() %}
|
||||
{% for sName, iStatus in oLog.getAllLogTypes() %}
|
||||
<input type="hidden" name="logtypes[{{ iStatus }}]" value="0">
|
||||
<input type="checkbox" value="1" name="logtypes[{{ iStatus }}]" id="{% if oModule|default('') is not same as ('') %}{{ oModule.getId() }}{% endif %}_{{ sName }}_{{ iStatus }}" {% if oView.getLogStatus(sName, oModule) %} checked{% endif %}><label for="{% if oModule|default('') is not same as ('') %}{{ oModule.getId() }}{% endif %}_{{ sName }}_{{ iStatus }}">{{ oView.getLogTypeTranslation(sName) }}</label> {% include "inputhelp.html.twig" with {'sHelpId': help_id(""), 'sHelpText': help_text("")} %}<br>
|
||||
<input type="checkbox" value="1" name="logtypes[{{ iStatus }}]" id="{% if oModule|default('') is not same as ('') %}{{ oModule.getId() }}{% endif %}_{{ sName }}_{{ iStatus }}" {{ readonly }} {% if oView.getLogStatus(sName, oModule) %} checked{% endif %}><label for="{% if oModule|default('') is not same as ('') %}{{ oModule.getId() }}{% endif %}_{{ sName }}_{{ iStatus }}">{{ oView.getLogTypeTranslation(sName) }}</label> {% include "inputhelp.html.twig" with {'sHelpId': help_id(""), 'sHelpText': help_text("")} %}<br>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<select id="loglevelelement" name="loglevel" class="edittext">
|
||||
<select id="loglevelelement" name="loglevel" class="edittext" {{ readonly }}>
|
||||
<option value="userdefined">{{ translate({ ident: "D3_CFG_LOG_TYPE_USERDEFINED" }) }}</option>
|
||||
<option value="none" {% if oView.getLogStatus('none', oModule) %} selected{% endif %}>{{ translate({ ident: "D3_CFG_LOG_TYPE_NONE" }) }}</option>
|
||||
<option value="error" {% if oView.getLogStatus('error', oModule) %} selected{% endif %}>{{ translate({ ident: "D3_CFG_LOG_TYPE_ERROR" }) }}</option>
|
||||
|
Reference in New Issue
Block a user