1- {#
2- *
3- * This file is part of phpFastCache.
4- *
5- * @license MIT License (MIT)
6- *
7- * For full copyright and license information, please see the docs/CREDITS.txt file.
8- *
9- * @author Georges.L (Geolim4) <contact@geolim4.com>
10- * @author PastisD https://github.com/PastisD
11- * @author Khoa Bui (khoaofgod) <khoaofgod@gmail.com> http://www.phpfastcache.com
12- *
13- #}
14-
151{% extends ' WebProfilerBundle:Profiler:layout.html.twig' %}
162
173{% block toolbar %}
5339 {% elseif collector .driverUsed | length == 1 %}
5440 <span ><abbr title =" {{ collector .driverUsed | first }}" >{{ collector .driverUsed | keys | first }}</abbr ></span >
5541 {% else %}
56- <span > Multiple ({{ collector .driverUsed | length }})</span >
42+ <span title = " {{ collector . driverUsed | keys | join ( ' , ' ) }} " >< abbr > Multiple ({{ collector .driverUsed | length }})</ abbr > </span >
5743 {% endif %}
5844 </div >
5945 </div >
114100 <table class =" {{ class | default (' ' ) }}" >
115101 <tbody >
116102 <tr >
117- <th >Driver Name</th >
103+ <th title =" The driver name with the namespace used" >
104+ <abbr >Driver Name</abbr >
105+ </th >
118106 <td ><strong >{{ collector .instances [name ].driverName }}</strong > (
119107 <small ><code >{{ collector .driverUsed [collector .instances [name ].driverName] }}</code >
120108 </small >
121109 )
122110 </td >
123111 </tr >
124112 <tr >
125- <th >Driver Info</th >
113+ <th title =" A short information provided by the itemPool depending the driver configuration" >
114+ <abbr >Driver Info</abbr >
115+ </th >
126116 <td >{{ stat .info | nl2br }}</td >
127117 </tr >
128118 <tr >
129- <th >Driver Size</th >
119+ <th title =" The disk/memory size took by the driver, it can be approximate depending the kind of driver." >
120+ <abbr >Driver Size</abbr >
121+ </th >
130122 <td >{{ stat .size | sizeFormat(1 ) }}</td >
131123 </tr >
132124 <tr >
133- <th >Driver Data</th >
125+ <th title =" The driver items keys fetched during the whole script execution" >
126+ <abbr >
127+ Driver Data
128+ </abbr >
129+ </th >
134130 <td >{{ stat .data }}</td >
135131 </tr >
136132 <tr >
137- <th >Driver RawData</th >
133+ <th title =" A bunch of raw configuration/debug data provided by the driver itself" >
134+ <abbr >Driver RawData</abbr >
135+ </th >
138136 <td >{{ dump (stat .rawData ) }}</td >
139137 </tr >
140138 <tr >
141- <th >Driver Config</th >
139+ <th title =" The configuration that was used to setup the driver instance" >
140+ <abbr >Driver Config</abbr >
141+ </th >
142142 <td >{{ dump (collector .instances [name ].driverConfig) }}</td >
143143 </tr >
144144 </tbody >
164164 {% endfor %}
165165 </tbody >
166166 </table >
167+ <h2 >PhpFastCache API Changelog</h2 >
168+ <div >
169+ <pre >{{ collector .apiChangelog }}</pre >
170+ </div >
167171{% endblock %}
0 commit comments