{#** * Copyright since 2007 PrestaShop SA and Contributors * PrestaShop is an International Registered Trademark & Property of PrestaShop SA * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.md. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/OSL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to https://devdocs.prestashop.com/ for more information. * * @author PrestaShop SA and Contributors * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) *#} {% extends '@WebProfiler/Profiler/layout.html.twig' %} {% block toolbar %} {% set icon %} {{ include('@WebProfiler/Icon/request.svg') }} Commands / Queries {% endset %} {% set text %}
Commands / Queries
Commands {% set commandsCount = collector.executedCommands|length %} {{ commandsCount }}
Queries {% set queriesCount = collector.executedQueries|length %} {{ queriesCount }}
{% endset %} {{ include('@WebProfiler/Profiler/toolbar_item.html.twig', { 'link': true }) }} {% endblock %} {% block menu %} {{ include('@WebProfiler/Icon/request.svg') }} Commands / Queries {% endblock %} {% block panel %}

Commands

{% if collector.executedCommands is not empty %} {% for command in collector.executedCommands %} {% endfor %} {% else %} {% endif %}
Command Command Handler Called from
{{ command.command }} {{ command.command_handler }} {{ command.trace.file }}:{{ command.trace.line }}
No Commands where executed during request.

Queries

{% if collector.executedQueries is not empty %} {% for query in collector.executedQueries %} {% endfor %} {% else %} {% endif %}
Query Query Handler Called from
{{ query.query }} {{ query.query_handler }} {{ query.trace.file }}:{{ query.trace.line }}
No Queries where executed during request.
{% endblock %}