{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %} {% block toolbar %} {% set icon %} eZ Publish Info {{ collector.count }} call{% if collector.count != 1 %}s{% endif %} {% endset %} {% set text %}
SPI calls {{ collector.count }}
SPI handlers {{ collector.handlerscount }}
{% endset %} {% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': profiler_url } %} {% endblock %} {% block menu %} eZ Publish Info eZ Publish {{ collector.count }} {% endblock %} {% block panel %}

eZ Publish Usage Information

{% if collector.handlerscount %} {% endif %}
Total Uncached SPI calls: {{ collector.count }}
Uncached SPI handlers(times loaded): {{ collector.handlers|join(', ') }}
{% if collector.callsLoggingEnabled %}

Uncached SPI calls

{% for call in collector.calls %} {% endfor %}
Class Method Arguments
{{ call.class }} {{ call.method }} {{ call.arguments }}
{% endif %} {% endblock %}