{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block toolbar %}
{% set icon %}
{% endset %}
{% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': false, 'text': collector.symfonyversion } %}
{% if verbose %}
{% set text %}
{% spaceless %}
PHP {{ collector.phpversion }}
|
xdebug
|
accel
{% endspaceless %}
{% endset %}
{% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': false, 'icon': '' } %}
{% endif %}
{% set icon %}
{% endset %}
{% set text %}
{% spaceless %}
{% if verbose %}
{{ collector.appname }}
|
{{ collector.env }}
|
{{ collector.debug ? 'debug' : 'no-debug' }}
|
{% endif %}
{% if profiler_url %}
{{ collector.token }}
{% else %}
{{ collector.token }}
{% endif %}
{% endspaceless %}
{% endset %}
{% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': profiler_url } %}
{% endblock %}
{% block menu %}
Config
{% endblock %}
{% block panel %}
Key | Value |
---|---|
Symfony version | {{ collector.symfonyversion }} |
Application name | {{ collector.appname }} |
Environment | {{ collector.env }} |
Debug | {{ collector.debug ? 'enabled' : 'disabled' }} |
Key | Value |
---|---|
PHP version | {{ collector.phpversion }} |
Xdebug | {{ collector.hasxdebug ? 'enabled' : 'disabled' }} |
PHP acceleration | {{ collector.hasaccelerator ? 'enabled' : 'disabled' }} |
XCache | {{ collector.hasxcache ? 'enabled' : 'disabled' }} |
APC | {{ collector.hasapc ? 'enabled' : 'disabled' }} |
EAccelerator | {{ collector.haseaccelerator ? 'enabled' : 'disabled' }} |
Name | Path |
---|---|
{{ name }} | {{ bundles[name] }} |