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
-
15
1
{% extends ' WebProfilerBundle:Profiler:layout.html.twig' %}
16
2
17
3
{% block toolbar %}
53
39
{% elseif collector .driverUsed | length == 1 %}
54
40
<span ><abbr title =" {{ collector .driverUsed | first }}" >{{ collector .driverUsed | keys | first }}</abbr ></span >
55
41
{% else %}
56
- <span > Multiple ({{ collector .driverUsed | length }})</span >
42
+ <span title = " {{ collector . driverUsed | keys | join ( ' , ' ) }} " >< abbr > Multiple ({{ collector .driverUsed | length }})</ abbr > </span >
57
43
{% endif %}
58
44
</div >
59
45
</div >
114
100
<table class =" {{ class | default (' ' ) }}" >
115
101
<tbody >
116
102
<tr >
117
- <th >Driver Name</th >
103
+ <th title =" The driver name with the namespace used" >
104
+ <abbr >Driver Name</abbr >
105
+ </th >
118
106
<td ><strong >{{ collector .instances [name ].driverName }}</strong > (
119
107
<small ><code >{{ collector .driverUsed [collector .instances [name ].driverName] }}</code >
120
108
</small >
121
109
)
122
110
</td >
123
111
</tr >
124
112
<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 >
126
116
<td >{{ stat .info | nl2br }}</td >
127
117
</tr >
128
118
<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 >
130
122
<td >{{ stat .size | sizeFormat(1 ) }}</td >
131
123
</tr >
132
124
<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 >
134
130
<td >{{ stat .data }}</td >
135
131
</tr >
136
132
<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 >
138
136
<td >{{ dump (stat .rawData ) }}</td >
139
137
</tr >
140
138
<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 >
142
142
<td >{{ dump (collector .instances [name ].driverConfig) }}</td >
143
143
</tr >
144
144
</tbody >
164
164
{% endfor %}
165
165
</tbody >
166
166
</table >
167
+ <h2 >PhpFastCache API Changelog</h2 >
168
+ <div >
169
+ <pre >{{ collector .apiChangelog }}</pre >
170
+ </div >
167
171
{% endblock %}
0 commit comments