PHP Classes

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

Recommend this page to a friend!
  Classes of Murat Cileli   Papernic   vendor/symfony/symfony/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/info.html.twig   Download  
File: vendor/symfony/symfony/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/info.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: 1,310 bytes
 

Contents

Class file image Download
{% extends '@WebProfiler/Profiler/layout.html.twig' %} {% set messages = { 'purge' : { status: 'success', title: 'The profiler database was purged successfully', message: 'Now you need to browse some pages with the Symfony Profiler enabled to collect data.' }, 'no_token' : { status: 'error', title: (token|default('') == 'latest') ? 'There are no profiles' : 'Token not found', message: (token|default('') == 'latest') ? 'No profiles found in the database.' : 'Token "' ~ token|default('') ~ '" was not found in the database.' }, 'upload_error' : { status: 'error', title: 'A problem occurred when uploading the data', message: 'No file given or the file was not uploaded successfully.' }, 'already_exists' : { status: 'error', title: 'A problem occurred when uploading the data', message: 'The token already exists in the database.' } } %} {% block summary %} <div class="status status-{{ messages[about].status }}"> <div class="container"> <h2>{{ messages[about].status|title }}</h2> </div> </div> {% endblock %} {% block panel %} <h2>{{ messages[about].title }}</h2> <p>{{ messages[about].message }}</p> {% endblock %}