8000 [WebProfilerBundle] Display environment variables by sanpii · Pull Request #22406 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[WebProfilerBundle] Display environment variables #22406

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[web-profiler-bundle] Display environment variables
  • Loading branch information
sanpii committed Apr 12, 2017
commit 4b54f4ed7c756e58764a360d3fe41a15f70212c1
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,25 @@
<a href="{{ path('_profiler_phpinfo') }}">View full PHP configuration</a>
</p>

<h2>Environment Configuration <small>({{ collector.environment|length }})</small></h2>

<table>
<thead>
<tr>
<th class="key">Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
{% for name in collector.environment|keys|sort %}
<tr>
<th scope="row" class="font-normal">{{ name }}</th>
<td class="font-normal">{{ collector.environment[name] }}</td>
</tr>
{% endfor %}
</tbody>
</table>

{% if collector.bundles %}
<h2>Enabled Bundles <small>({{ collector.bundles|length }})</small></h2>
<table>
Expand Down
0