Yaffs site version 1.1
[yaffs-website] / vendor / twig / twig / lib / Twig / Profiler / Dumper / Html.php
1 <?php
2
3 /*
4  * This file is part of Twig.
5  *
6  * (c) Fabien Potencier
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 /**
13  * @author Fabien Potencier <fabien@symfony.com>
14  *
15  * @final
16  */
17 class Twig_Profiler_Dumper_Html extends Twig_Profiler_Dumper_Text
18 {
19     private static $colors = array(
20         'block' => '#dfd',
21         'macro' => '#ddf',
22         'template' => '#ffd',
23         'big' => '#d44',
24     );
25
26     public function dump(Twig_Profiler_Profile $profile)
27     {
28         return '<pre>'.parent::dump($profile).'</pre>';
29     }
30
31     protected function formatTemplate(Twig_Profiler_Profile $profile, $prefix)
32     {
33         return sprintf('%s└ <span style="background-color: %s">%s</span>', $prefix, self::$colors['template'], $profile->getTemplate());
34     }
35
36     protected function formatNonTemplate(Twig_Profiler_Profile $profile, $prefix)
37     {
38         return sprintf('%s└ %s::%s(<span style="background-color: %s">%s</span>)', $prefix, $profile->getTemplate(), $profile->getType(), isset(self::$colors[$profile->getType()]) ? self::$colors[$profile->getType()] : 'auto', $profile->getName());
39     }
40
41     protected function formatTime(Twig_Profiler_Profile $profile, $percent)
42     {
43         return sprintf('<span style="color: %s">%.2fms/%.0f%%</span>', $percent > 20 ? self::$colors['big'] : 'auto', $profile->getDuration() * 1000, $percent);
44     }
45 }
46
47 class_alias('Twig_Profiler_Dumper_Html', 'Twig\Profiler\Dumper\HtmlDumper', false);