aboutsummaryrefslogtreecommitdiff
path: root/srcs/phpmyadmin/templates/database/structure/table_header.twig
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-07-27 10:05:23 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-07-27 10:05:23 +0200
commit5bf66662a9bdd62c5bccab15e607cd95cfb8fcab (patch)
tree39a1a4629749056191c05dfd899f931701b7acf3 /srcs/phpmyadmin/templates/database/structure/table_header.twig
parent5afd237bbd22028b85532b8c0b3fcead49a00764 (diff)
downloadft_server-5bf66662a9bdd62c5bccab15e607cd95cfb8fcab.tar.gz
ft_server-5bf66662a9bdd62c5bccab15e607cd95cfb8fcab.tar.bz2
ft_server-5bf66662a9bdd62c5bccab15e607cd95cfb8fcab.zip
Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my famillyHEADmaster
Diffstat (limited to 'srcs/phpmyadmin/templates/database/structure/table_header.twig')
-rw-r--r--srcs/phpmyadmin/templates/database/structure/table_header.twig78
1 files changed, 0 insertions, 78 deletions
diff --git a/srcs/phpmyadmin/templates/database/structure/table_header.twig b/srcs/phpmyadmin/templates/database/structure/table_header.twig
deleted file mode 100644
index e479f5e..0000000
--- a/srcs/phpmyadmin/templates/database/structure/table_header.twig
+++ /dev/null
@@ -1,78 +0,0 @@
-<form method="post" action="db_structure.php" name="tablesForm" id="tablesForm">
-{{ get_hidden_inputs(db) }}
-<div class="responsivetable">
-<table id="structureTable" class="data">
- <thead>
- <tr>
- <th class="print_ignore"></th>
- <th>{{ sortable_table_header('Table'|trans, 'table') }}</th>
- {% if replication %}
- <th>{% trans 'Replication' %}</th>
- {% endif %}
-
- {% if db_is_system_schema %}
- {% set action_colspan = 3 %}
- {% else %}
- {% set action_colspan = 6 %}
- {% endif %}
- {% if num_favorite_tables > 0 %}
- {% set action_colspan = action_colspan + 1 %}
- {% endif %}
- <th colspan="{{ action_colspan }}" class="print_ignore">
- {% trans 'Action' %}
- </th>
- {# larger values are more interesting so default sort order is DESC #}
- <th>
- {{ sortable_table_header('Rows'|trans, 'records', 'DESC') }}
- {{ show_hint('May be approximate. Click on the number to get the exact count. See [doc@faq3-11]FAQ 3.11[/doc].'|trans|sanitize) }}
- </th>
- {% if not (properties_num_columns > 1) %}
- <th>{{ sortable_table_header('Type'|trans, 'type') }}</th>
- <th>{{ sortable_table_header('Collation'|trans, 'collation') }}</th>
- {% endif %}
-
- {% if is_show_stats %}
- {# larger values are more interesting so default sort order is DESC #}
- <th>{{ sortable_table_header('Size'|trans, 'size', 'DESC') }}</th>
- {# larger values are more interesting so default sort order is DESC #}
- <th>{{ sortable_table_header('Overhead'|trans, 'overhead', 'DESC') }}</th>
- {% endif %}
-
- {% if show_charset %}
- <th>{{ sortable_table_header('Charset'|trans, 'charset') }}</th>
- {% endif %}
-
- {% if show_comment %}
- <th>{{ sortable_table_header('Comment'|trans, 'comment') }}</th>
- {% endif %}
-
- {% if show_creation %}
- {# newer values are more interesting so default sort order is DESC #}
- <th>{{ sortable_table_header('Creation'|trans, 'creation', 'DESC') }}</th>
- {% endif %}
-
- {% if show_last_update %}
- {# newer values are more interesting so default sort order is DESC #}
- <th>{{ sortable_table_header('Last update'|trans, 'last_update', 'DESC') }}</th>
- {% endif %}
-
- {% if show_last_check %}
- {# newer values are more interesting so default sort order is DESC #}
- <th>{{ sortable_table_header('Last check'|trans, 'last_check', 'DESC') }}</th>
- {% endif %}
- </tr>
- </thead>
- <tbody>
- {% for structure_table_row in structure_table_rows %}
- {% include 'database/structure/structure_table_row.twig' with structure_table_row only %}
- {% endfor %}
- </tbody>
- {% if body_for_table_summary %}
- {% include 'database/structure/body_for_table_summary.twig' with body_for_table_summary only %}
- {% endif %}
-</table>
-</div>
-{% if check_all_tables %}
- {% include 'database/structure/check_all_tables.twig' with check_all_tables only %}
-{% endif %}
-</form>