{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block toolbar %}
{% set icon %}
{{ 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
{{ collector.count }}
{% endblock %}
{% block panel %}
eZ Publish Usage Information
Total Uncached SPI calls: |
{{ collector.count }} |
{% if collector.handlerscount %}
Uncached SPI handlers(times loaded): |
{{ collector.handlers|join(', ') }} |
{% endif %}
{% if collector.callsLoggingEnabled %}
Uncached SPI calls
Class |
Method |
Arguments |
{% for call in collector.calls %}
{{ call.class }} |
{{ call.method }} |
{{ call.arguments }} |
{% endfor %}
{% endif %}
{% endblock %}