{% extends 'admin.twig' %} {% macro humanReadableValue(value) %} {% if value is false %} false {% elseif value is true %} true {% elseif value is null %} {% elseif value is emptyString %} '' {% else %} {{ value|join(', ') }} {% endif %} {% endmacro %} {% block content %}

{{ 'Diagnostics_ConfigFileIntroduction'|translate('"config/config.ini.php"')|raw }} {{ 'Diagnostics_HideUnchanged'|translate('', '')|raw }}

{{ 'Diagnostics_Sections'|translate }}

{% for category, values in allConfigValues %} {{ category }}
{% endfor %}

{% for category, configValues in allConfigValues %} {% for key, configEntry in configValues %} {% endfor %} {% endfor %}

{{ category }}

{{ key }}{% if configEntry.value is iterable %}[]{% endif %} {{ _self.humanReadableValue(configEntry.value) }} {{ configEntry.description }} {% if (configEntry.isCustomValue or configEntry.value is null) and configEntry.defaultValue is not null %} {% if configEntry.description %}
{% endif %} {{ 'General_Default'|translate }}: {{ _self.humanReadableValue(configEntry.defaultValue) }} {% endif %}
{% endblock %}