{{ lang('STORAGE_TITLE') }}

{{ lang('STORAGE_TITLE_EXPLAIN') }}

{% for storage in STORAGES %}
{{ lang('STORAGE_' ~ storage.get_name | upper ~ '_TITLE') }}

{{ lang('STORAGE_SELECT_DESC') }}
{% for provider in PROVIDERS if provider.is_available %}
{{ lang('STORAGE_' ~ storage.get_name | upper ~ '_TITLE') }} - {{ lang('STORAGE_ADAPTER_' ~ provider.get_name | upper ~ '_NAME') }} {% for name, options in provider.get_options %}
{% set title = 'STORAGE_ADAPTER_' ~ provider.get_name | upper ~ '_OPTION_' ~ name | upper %} {% set description = 'STORAGE_ADAPTER_' ~ provider.get_name | upper ~ '_OPTION_' ~ name | upper ~ '_EXPLAIN' %} {% if description != lang(description) %}
{{ lang(description) }}{% endif %}
{% set input_type = options['type'] %} {% set input_name = storage.get_name ~ '[' ~ name ~ ']' %} {% set input_value = attribute(config, 'storage\\' ~ storage.get_name ~ '\\config\\' ~ name) %} {% if input_type in ['text', 'password', 'email'] %} {% elseif input_type == 'textarea' %} {% elseif input_type == 'radio' %} {% for option_name, option_value in options['options'] %} {% endfor %} {% elseif input_type == 'select' %} {% endif %}
{% endfor %}
{% endfor %} {% endfor %}
{{ lang('SUBMIT') }}   {S_FORM_TOKEN}