PHP Classes

File: vendor/symfony/symfony/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/table.html.twig

Recommend this page to a friend!
  Classes of Murat Cileli   Papernic   vendor/symfony/symfony/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/table.html.twig   Download  
File: vendor/symfony/symfony/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/table.html.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Papernic
Manage documents colaboratively
Author: By
Last change:
Date: 7 years ago
Size: 493 bytes
 

Contents

Class file image Download
<table class="{{ class|default('') }}"> <thead> <tr> <th scope="col" class="key">{{ labels is defined ? labels[0] : 'Key' }}</th> <th scope="col">{{ labels is defined ? labels[1] : 'Value' }}</th> </tr> </thead> <tbody> {% for key in data|keys|sort %} <tr> <th scope="row">{{ key }}</th> <td>{{ profiler_dump(data[key]) }}</td> </tr> {% endfor %} </tbody> </table>