File "column_select_cell.twig"

Full Path: /home/vantageo/public_html/cache/cache/cache/cache/.wp-cli/wp-content/plugins/wp-phpmyadmin-extension/lib/phpMyAdmin/templates/database/qbe/column_select_cell.twig
File size: 393 bytes
MIME-type: text/plain
Charset: utf-8

<td class="text-center">
    <select name="criteriaColumn[{{ column_number }}]" size="1">
        <option value="">&nbsp;</option>
        {% for column in column_names %}
            <option value="{{ column }}"
                {%- if column is same as(selected) %} selected="selected"{% endif %}>
                {{- column -}}
            </option>
        {% endfor %}
    </select>
</td>