File "preview_sql.twig"

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

<div class="preview_sql">
    {% if query_data is empty %}
        {% trans 'No change' %}
    {% elseif query_data is iterable %}
        {% for query in query_data %}
            {{ format_sql(query) }}
        {% endfor %}
    {% else %}
        {{ format_sql(query_data) }}
    {% endif %}
</div>