{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %} {% block toolbar %} {% set icon %} eZ Publish Info {% endset %} {% set text %}
SPI (persistence)
calls {{ collector.count }}
handlers {{ collector.handlerscount }}

{% if ( collector.templates.compact|length or collector.legacytemplates.compact|length ) %}
Templates
{% if collector.templates.compact|length %}
Twig {{ collector.templates.compact|length }}
{% endif %} {% if collector.legacytemplates.compact|length %}
Legacy {{ collector.legacytemplates.compact|length }}
{% endif %} {% endif %} {% 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.legacytemplates.full|length > 0 %}

Loaded legacy templates

{% for tpl, info in collector.legacytemplates.full %} {% endfor %}
Requested # Override Path
{{ tpl }} {{ collector.legacytemplates.compact[tpl] }} {% if tpl != info.loaded %}{{ info.loaded }}N/A{% else %}{% endif %} {{ info.fullPath }}
{% endif %} {% if collector.templates.full|length > 0 %}

Loaded twig templates

{% for tpl,time in collector.templates.full %} {% endfor %}
Loaded template # Exec. time (ms)
{{ tpl }} {{ collector.templates.compact[tpl] }} {{ time }}
{% endif %} {% 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 %}