Line 9... |
Line 9... |
9 |
* @package Framework
|
9 |
* @package Framework
|
10 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
10 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
11 |
* @copyright Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
|
11 |
* @copyright Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
|
12 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
|
12 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
|
13 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
|
13 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
|
14 |
* @version $Id: Chronometre.php 316 2011-02-07 17:39:58Z jpm $
|
14 |
* @version $Id: Chronometre.php 327 2011-02-08 17:54:34Z jpm $
|
15 |
* @link /doc/framework/
|
15 |
* @link /doc/framework/
|
16 |
*/
|
16 |
*/
|
17 |
class Chronometre {
|
17 |
class Chronometre {
|
18 |
/*** Attributs : ***/
|
18 |
/*** Attributs : ***/
|
19 |
private static $pointArretNumero = 1;
|
19 |
private static $pointArretNumero = 1;
|
Line 115... |
Line 115... |
115 |
$total_tps_ecoule_final_fmt = number_format($total_tps_ecoule, 3, ',', ' ');
|
115 |
$total_tps_ecoule_final_fmt = number_format($total_tps_ecoule, 3, ',', ' ');
|
116 |
// Début création de l'affichage
|
116 |
// Début création de l'affichage
|
117 |
$sortie = '<table id="chrono" lang="fr" summary="Résultat duchronométrage du programme affichant la page actuelle.">'."\n".
|
117 |
$sortie = '<table id="chrono" lang="fr" summary="Résultat duchronométrage du programme affichant la page actuelle.">'."\n".
|
118 |
'<caption>Chronométrage</caption>'."\n".
|
118 |
'<caption>Chronométrage</caption>'."\n".
|
119 |
'<thead>'."\n".
|
119 |
'<thead>'."\n".
|
120 |
' <tr><th>Action</th><th>Temps écoulé (en s.)</th><th>Cumul du temps écoulé (en s.)</th></tr>'."\n".
|
120 |
' <tr><th>Action</th><th title="Temps écoulé vis à vis de l\'action précédente">Temps écoulé (en s.)</th><th>Cumul du temps écoulé (en s.)</th></tr>'."\n".
|
121 |
'</thead>'."\n".
|
121 |
'</thead>'."\n".
|
122 |
'<tbody>'."\n".
|
122 |
'<tbody>'."\n".
|
123 |
$tbody.
|
123 |
$tbody.
|
124 |
'</tbody>'."\n".
|
124 |
'</tbody>'."\n".
|
125 |
'<tfoot>'."\n".
|
125 |
'<tfoot>'."\n".
|