/
usr
/
share
/
phpmyadmin
/
templates
/
database
/
structure
/
/usr/share/phpmyadmin/templates/database/structure
mkdir
upload
Name
Size
Mode
Actions
add_prefix.twig
432
0644
edit
dl
rm
body_for_table_summary.twig
3478
0644
edit
dl
rm
change_prefix_form.twig
493
0644
edit
dl
rm
check_all_tables.twig
2682
0644
edit
dl
rm
collation_definition.twig
48
0644
edit
dl
rm
copy_form.twig
1806
0644
edit
dl
rm
drop_form.twig
914
0644
edit
dl
rm
empty_form.twig
915
0644
edit
dl
rm
favorite_anchor.twig
383
0644
edit
dl
rm
index.twig
650
0644
edit
dl
rm
overhead.twig
182
0644
edit
dl
rm
show_create.twig
1245
0644
edit
dl
rm
structure_table_row.twig
8541
0644
edit
dl
rm
table_header.twig
3465
0644
edit
dl
rm
tracking_icon.twig
261
0644
edit
dl
rm
Edit:
/usr/share/phpmyadmin/templates/database/structure/table_header.twig
(3465B)
<form method="post" action="{{ url('/database/structure') }}" name="tablesForm" id="tablesForm"> {{ get_hidden_inputs(db) }} <div class="table-responsive"> <table class="table table-light table-striped table-hover table-sm w-auto data"> <thead class="thead-light"> <tr> <th class="d-print-none"></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="d-print-none"> {% 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>
Save
{{ get_hidden_inputs(db) }}
{{ sortable_table_header('Table'|trans, 'table') }}
{% if replication %}
{% trans 'Replication' %}
{% 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 %}
{% trans 'Action' %}
{# larger values are more interesting so default sort order is DESC #}
{{ 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) }}
{% if not (properties_num_columns > 1) %}
{{ sortable_table_header('Type'|trans, 'type') }}
{{ sortable_table_header('Collation'|trans, 'collation') }}
{% endif %} {% if is_show_stats %} {# larger values are more interesting so default sort order is DESC #}
{{ sortable_table_header('Size'|trans, 'size', 'DESC') }}
{# larger values are more interesting so default sort order is DESC #}
{{ sortable_table_header('Overhead'|trans, 'overhead', 'DESC') }}
{% endif %} {% if show_charset %}
{{ sortable_table_header('Charset'|trans, 'charset') }}
{% endif %} {% if show_comment %}
{{ sortable_table_header('Comment'|trans, 'comment') }}
{% endif %} {% if show_creation %} {# newer values are more interesting so default sort order is DESC #}
{{ sortable_table_header('Creation'|trans, 'creation', 'DESC') }}
{% endif %} {% if show_last_update %} {# newer values are more interesting so default sort order is DESC #}
{{ sortable_table_header('Last update'|trans, 'last_update', 'DESC') }}
{% endif %} {% if show_last_check %} {# newer values are more interesting so default sort order is DESC #}
{{ sortable_table_header('Last check'|trans, 'last_check', 'DESC') }}
{% endif %}
{% for structure_table_row in structure_table_rows %} {% include 'database/structure/structure_table_row.twig' with structure_table_row only %} {% endfor %}
{% if body_for_table_summary %} {% include 'database/structure/body_for_table_summary.twig' with body_for_table_summary only %} {% endif %}
{% if check_all_tables %} {% include 'database/structure/check_all_tables.twig' with check_all_tables only %} {% endif %}