Server : Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6
System : Windows NT USER-PC 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) AMD64
User : User ( 0)
PHP Version : 7.4.6
Disable Function : NONE
Directory :  C:/xampp/phpMyAdmin/templates/table/search/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : C:/xampp/phpMyAdmin/templates/table/search/fields_table.twig
<table class="data"{{ search_type == 'zoom' ? ' id="tableFieldsId"' }}>
    <thead>
        <tr>
            {% if geom_column_flag %}
                <th>{% trans 'Function' %}</th>
            {% endif %}
            <th>{% trans 'Column' %}</th>
            <th>{% trans 'Type' %}</th>
            <th>{% trans 'Collation' %}</th>
            <th>{% trans 'Operator' %}</th>
            <th>{% trans 'Value' %}</th>
        </tr>
    </thead>
    <tbody>
    {% if search_type == 'zoom' %}
        {% include 'table/search/rows_zoom.twig' with {
            'self': self,
            'column_names': column_names,
            'keys': keys,
            'criteria_column_names': criteria_column_names,
            'criteria_column_types': criteria_column_types
        } only %}
    {% else %}
        {% include 'table/search/rows_normal.twig' with {
            'self': self,
            'geom_column_flag': geom_column_flag,
            'column_names': column_names,
            'column_types': column_types,
            'column_collations': column_collations
        } only %}
    {% endif %}
    </tbody>
</table>