diff --git a/phpBB/adm/style/acp_storage.html b/phpBB/adm/style/acp_storage.html index 4146d50d03..d94d569c96 100644 --- a/phpBB/adm/style/acp_storage.html +++ b/phpBB/adm/style/acp_storage.html @@ -1,4 +1,3 @@ -{% import 'forms.html' as forms %} @@ -30,13 +29,35 @@
{{ lang('STORAGE_' ~ storage.get_name | upper ~ '_TITLE') }} - {{ lang('STORAGE_ADAPTER_' ~ provider.get_name | upper ~ '_NAME') }} {% for name, options in provider.get_options %} - {% set l_name = 'STORAGE_ADAPTER_' ~ provider.get_name | upper ~ '_OPTION_' ~ name | upper %} - {% set options = options|merge({'name': storage.get_name ~ '[' ~ name ~ ']'}) %} - {% set options = options|merge({'value': attribute(CONFIG, 'storage\\' ~ storage.get_name ~ '\\config\\' ~ name)}) %} - {{ forms.form_row( - forms.form_label(l_name), - forms.form_control(options) - ) }} +
+
+ {% if description is not empty %}
{{ 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 == 'text' or + input_type == 'password' or + input_type == '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 %} diff --git a/phpBB/adm/style/forms.html b/phpBB/adm/style/forms.html deleted file mode 100644 index d3e10f563b..0000000000 --- a/phpBB/adm/style/forms.html +++ /dev/null @@ -1,28 +0,0 @@ -{% macro input(name, value, type, size) %} - -{% endmacro %} - -{% macro textarea(name, value, rows, cols) %} - -{% endmacro %} - -{% macro form_control(params) %} - {% if params['type'] == 'text' %} - {{ _self.input(params['name'], params['value'], params['type']) }} - {% endif %} -{% endmacro %} - -{% macro form_label(name, description = '') %} - {% if description is not empty %}
{{ lang(description) }}{% endif %} -{% endmacro %} - -{% macro form_row(left_content, right_content) %} -
-
- {{ left_content }} -
-
- {{ right_content}} -
-
-{% endmacro %} diff --git a/phpBB/includes/acp/acp_storage.php b/phpBB/includes/acp/acp_storage.php index aa7f45d981..a552be0f44 100644 --- a/phpBB/includes/acp/acp_storage.php +++ b/phpBB/includes/acp/acp_storage.php @@ -11,10 +11,6 @@ * */ -/** -* @todo add cron intervals to server settings? (database_gc, queue_interval, session_gc, search_gc, cache_gc, warnings_gc) -*/ - /** * @ignore */