| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- use \DebugBar\DataCollector\TimeDataCollector;
- /**
- * DolTimeDataCollector class
- */
- class DolTimeDataCollector extends TimeDataCollector
- {
- /**
- * Return widget settings
- *
- * @return array Array
- */
- public function getWidgets()
- {
- global $langs;
- return array(
- "time" => array(
- "icon" => "clock-o",
- "tooltip" => $langs->transnoentities('RequestDuration'),
- "map" => "time.duration_str",
- "default" => "'0ms'"
- ),
- $langs->transnoentities('Timeline') => array(
- "icon" => "tasks",
- "widget" => "PhpDebugBar.Widgets.TimelineWidget",
- "map" => "time",
- "default" => "{}"
- )
- );
- }
- }
|