From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- .../templates/columns_definitions/partitions.twig | 180 --------------------- 1 file changed, 180 deletions(-) delete mode 100644 srcs/phpmyadmin/templates/columns_definitions/partitions.twig (limited to 'srcs/phpmyadmin/templates/columns_definitions/partitions.twig') diff --git a/srcs/phpmyadmin/templates/columns_definitions/partitions.twig b/srcs/phpmyadmin/templates/columns_definitions/partitions.twig deleted file mode 100644 index b8c88af..0000000 --- a/srcs/phpmyadmin/templates/columns_definitions/partitions.twig +++ /dev/null @@ -1,180 +0,0 @@ -{% set partition_options = [ - '', - 'HASH', - 'LINEAR HASH', - 'KEY', - 'LINEAR KEY', - 'RANGE', - 'RANGE COLUMNS', - 'LIST', - 'LIST COLUMNS' -] %} -{% set sub_partition_options = ['', 'HASH', 'LINEAR HASH', 'KEY', 'LINEAR KEY'] %} -{% set value_type_options = ['', 'LESS THAN', 'LESS THAN MAXVALUE', 'IN'] %} - - - - - - - - - - - - {% if partition_details['can_have_subpartitions'] %} - - - - - - - - - - {% endif %} -
- - - () -
- -
- - - () -
- -
-{% if partition_details['partition_count'] > 1 %} - - - - {% if partition_details['value_enabled'] %} - - {% endif %} - {% if partition_details['can_have_subpartitions'] - and partition_details['subpartition_count'] > 1 %} - - {% endif %} - - - - - - - - - - {% for partition in partition_details['partitions'] %} - {% set rowspan = partition['subpartition_count'] is not empty - ? partition['subpartition_count'] + 1 : 2 %} - - - {% if partition_details['value_enabled'] %} - - {% endif %} - - - {% if partition['subpartitions'] is defined %} - {% set subpartitions = partition['subpartitions'] %} - {% else %} - {% set subpartitions = [partition] %} - {% endif %} - - {% for subpartition in subpartitions %} - - {% if partition_details['can_have_subpartitions'] - and partition_details['subpartition_count'] > 1 %} - - {% endif %} - - - - - - - - - - {% endfor %} - {% endfor %} -
{% trans 'Partition' %}{% trans 'Values' %}{% trans 'Subpartition' %}{% trans 'Engine' %}{% trans 'Comment' %}{% trans 'Data directory' %}{% trans 'Index directory' %}{% trans 'Max rows' %}{% trans 'Min rows' %}{% trans 'Table space' %}{% trans 'Node group' %}
- - - - -
- - - {{ get_html_select( - subpartition['prefix'] ~ '[engine]', - null, - subpartition['engine'], - false, - true - ) }} - - {% apply spaceless %} - - {% endapply %} - - - - - - - - - - - - -
-{% endif %} -- cgit