{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %} {% block toolbar %} {% set icon %} Symfony {% endset %} {% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': false, 'text': collector.symfonyversion } %} {% set text %} PHP {{ collector.phpversion }} | xdebug | accel {% endset %} {% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': false, 'icon': '' } %} {% set icon %} Environment {% endset %} {% set text %} {{ collector.appname }} | {{ collector.env }} | {{ collector.debug ? 'debug' : 'no-debug' }} | {% if profiler_url %} {{ collector.token }} {% else %} {{ collector.token }} {% endif %} {% endset %} {% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': profiler_url } %} {% endblock %} {% block menu %} Configuration Config {% endblock %} {% block panel %}

Configuration

Key Value
Symfony version {{ collector.symfonyversion }}
Application {{ collector.appname }}
Environment {{ collector.env }}
Debug {{ collector.debug ? 'enabled' : 'disabled' }}
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' }}
{% endblock %}