templates/debug/source_code.html.twig line 1

Open in your IDE?
  1. <div class="section source-code">
  2.     <p>
  3.         {{ 'help.show_code'|trans|raw }}
  4.     </p>
  5.     <button type="button" class="btn btn-default btn-lg btn-block" data-toggle="modal" data-target="#sourceCodeModal">
  6.       <i class="fa fa-cogs" aria-hidden="true"></i> {{ 'action.show_code'|trans }}
  7.     </button>
  8.     <div class="modal fade" id="sourceCodeModal" tabindex="-1">
  9.         <div class="modal-dialog modal-lg">
  10.             <div class="modal-content">
  11.                 <div class="modal-header">
  12.                     <button type="button" class="close" data-dismiss="modal" aria-label="{{ 'action.close'|trans }}">
  13.                         <span aria-hidden="true">&times;</span>
  14.                     </button>
  15.                     <h4 class="modal-title"><i class="fa fa-code" aria-hidden="true"></i> {{ 'title.source_code'|trans }}</h4>
  16.                 </div>
  17.                 <div class="modal-body">
  18.                     {% if controller %}
  19.                         <h3><a href="https://symfony.com/doc/current/controller.html" target="_blank">{{ 'title.controller_code'|trans }}</a><small class="pull-right">{{ controller.file_path|format_file(controller.starting_line) }}</small></h3>
  20.                         <pre><code class="php">{{ controller.source_code }}</code></pre>
  21.                     {% else %}
  22.                         <h3><a href="https://symfony.com/doc/current/controller.html">{{ 'title.controller_code'|trans }}</a></h3>
  23.                         <pre><code>{{ 'not_available'|trans }}</code></pre>
  24.                     {% endif %}
  25.                     <h3><a href="https://symfony.com/doc/current/templates.html" target="_blank">{{ 'title.twig_template_code'|trans }}</a><small class="pull-right">{{ template.file_path|format_file(template.starting_line) }}</small></h3>
  26.                     <pre><code class="twig">{{ template.source_code }}</code></pre>
  27.                 </div>
  28.             </div>
  29.         </div>
  30.     </div>
  31. </div>